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

the current version (4.4) of the banking app is 7 years old :-( new version: 5.1.8
author Erkan Yilmaz <erkan@slitaz.org>
date Sun May 20 11:05:25 2018 +0000 (2018-05-20)
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>'