wok view rox-filer/stuff/rox-open-folder-menu.sh @ rev 13847

frogatto: try to fix build (Boost 1.47 removed a deprecated function...) btw, we use boost 1.50
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Jan 09 01:13:47 2013 +0000 (2013-01-09)
parents
children
line source
1 #!/bin/sh
2 #
3 # Openbox pipe menu to launch rox-filer using GTK bookmarks.
4 #
6 echo '<openbox_pipe_menu>'
8 # Home
9 echo '<item label="Home">'
10 echo '<action name="Execute"><execute>'
11 echo "rox-filer ~"
12 echo '</execute></action></item>'
16 # GTK bookmarks
17 for dir in `sed 's/[ ][^ ]*$//' .gtk-bookmarks | sed 's!file://!!'`
18 do
19 echo '<item label="'`basename $dir`'">'
20 echo '<action name="Execute"><execute>'
21 echo "rox-filer $dir"
22 echo '</execute></action></item>'
23 done
25 echo '</openbox_pipe_menu>'