diff options
author | Aaron LI <aaronly.me@gmail.com> | 2016-01-06 19:23:48 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@gmail.com> | 2016-01-06 19:23:48 +0800 |
commit | 0fd3fb5eb258bb1bbf08ffd11bc43bde7722f06a (patch) | |
tree | 1fd5e3db4e9c7947889be60325046a5cc2c37388 /.config/openbox/pipemenus | |
parent | 028ab301fe80c9ed872fe8ba4be2819648e30d97 (diff) | |
download | dotfiles-0fd3fb5eb258bb1bbf08ffd11bc43bde7722f06a.tar.bz2 |
Rename .config => _config
Diffstat (limited to '.config/openbox/pipemenus')
-rwxr-xr-x | .config/openbox/pipemenus/obpipemenu-places | 102 |
1 files changed, 0 insertions, 102 deletions
diff --git a/.config/openbox/pipemenus/obpipemenu-places b/.config/openbox/pipemenus/obpipemenu-places deleted file mode 100755 index 3b73618..0000000 --- a/.config/openbox/pipemenus/obpipemenu-places +++ /dev/null @@ -1,102 +0,0 @@ -#!/usr/bin/perl -# Recursively browse filesystem through openbox3 pipe menus -#### Usage: add -# <menu id="browse" label="Browse" execute="obpipemenu-places ~" /> -# to your .config/openbox/menu.xml -#### CAVEAT #### -# This script was hacked on exclusively in stints between the hours of -# 4 and 5 in the morning. Quality may have suffered. -#### -# Script by dircha from ob list on 05/17/04 -# suggested improvements by John Russell on 05/17/04 implemented -# a year later by Kacper Wysocki. -# 05/30/05 - Kacper Wysocki -# - opens files with 'rox', which launches appropriate file handler -# - hidden directories now stay hidden -# - spaces, ampersands in dir- and filenames are escaped -# - newlines at each entry to make output a little readable -# 06/04/05 - Kacper Wysocki -# - use $0 for scriptname -# - use $ENV{'HOME'} as default path -# - now follows symlinks - -use strict; - -# Command to lauch files with -my $cmd = "thunar"; - -my $path = $ARGV[0]; -$path = "$ENV{'HOME'}" if $path eq ""; -my @files = split /\n/, `ls -1p '$path'`; -mk_menu_element($path, @files); - -sub mk_menu_element { - my ($path, @files) = @_; - - print "<openbox_pipe_menu>\n"; - - # "Browse here..." lauches this dir - print "<item label=\"Browse here..\">". - "\n\t<action name=\"Execute\">". - "\n\t\t<execute>$cmd '$path'</execute>". - "\n\t</action>". - "\n</item>\n". - "<separator />"; - - foreach $_ (@files) { - my $length = length $_; - my $last_c = substr $_, $length - 1, 1; - - if ($last_c eq "/") { - print mk_dir_element($path, substr $_, 0, $length - 1); - } elsif ($last_c eq "@") { - print mk_sym_element($path, substr $_, 0, $length - 1); - } else { - print mk_file_element($path, $_); - } - } - print "</openbox_pipe_menu>\n"; -} - -sub mk_dir_element { - my ($path, $name) = @_; - # escape ampersand and space in pathnames - $path =~ s/&/&/g; - $name =~ s/&/&/g; - $path =~ s/ /\\ /g; - $name =~ s/ /\\ /g; - - return "<menu id=\"$path/$name\" label=\"$name\" execute=\"$0 $path/$name\" />\n"; -} - -sub mk_sym_element { - my ($path, $name) = @_; - # escape ampersand in pathnames - $path =~ s/&/&/g; - $name =~ s/&/&/g; - - # Follow symlinks instead of opening links in rox. - return "<menu id=\"$path/$name\" label=\"$name\" execute=\"$0 $path/$name\" />\n"; -=cut - return "<item label=\"$name\">". - "\n\t<action name=\"Execute\">". - "\n\t\t<execute>$cmd '$path/$name'</execute>". - "\n\t</action>" - . "\n</item>\n"; -=cut -} - -sub mk_file_element { - my ($path, $name) = @_; - my $label = $name; - # escape ampersand in pathnames - $path =~ s/&/&/g; - $name =~ s/&/&/g; - - return "<item label=\"$name\">". - "\n\t<action name=\"Execute\">". - "\n\t\t<execute>$cmd '$path/$name'</execute>". - "\n\t</action>" - . "\n</item>\n"; -} - |