wok-6.x diff rox-filer/stuff/rox-open-folder-menu.sh @ rev 14882
python-socketpool, python-restkit, python-http-parser, python-couchdbkit: we need a meaningfull TARBALL to store sources on mirror
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Jul 24 15:51:20 2013 +0000 (2013-07-24) |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/rox-filer/stuff/rox-open-folder-menu.sh Wed Jul 24 15:51:20 2013 +0000 1.3 @@ -0,0 +1,25 @@ 1.4 +#!/bin/sh 1.5 +# 1.6 +# Openbox pipe menu to launch rox-filer using GTK bookmarks. 1.7 +# 1.8 + 1.9 +echo '<openbox_pipe_menu>' 1.10 + 1.11 +# Home 1.12 +echo '<item label="Home">' 1.13 +echo '<action name="Execute"><execute>' 1.14 +echo "rox-filer ~" 1.15 +echo '</execute></action></item>' 1.16 + 1.17 + 1.18 + 1.19 +# GTK bookmarks 1.20 +for dir in `sed 's/[ ][^ ]*$//' .gtk-bookmarks | sed 's!file://!!'` 1.21 +do 1.22 + echo '<item label="'`basename $dir`'">' 1.23 + echo '<action name="Execute"><execute>' 1.24 + echo "rox-filer $dir" 1.25 + echo '</execute></action></item>' 1.26 +done 1.27 + 1.28 +echo '</openbox_pipe_menu>'