123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715 |
- #!/usr/bin/perl
- # Copyright (C) 2011-2013 Trizen <echo dHJpemVueEBnbWFpbC5jb20K | base64 -d>.
- #
- # This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- #
- # Openbox Menu Generator
- # A fast pipe/static menu generator for the Openbox Window Manager.
- # It used to be even faster about a year ago, but now it's older and wiser :)
- #
- # License: GPLv3
- # Created on: 25 March 2011
- # Latest edit on: 29 August 2013
- # Website: http://trizen.googlecode.com
- #use strict;
- #use warnings;
- require Linux::DesktopFiles;
- my $pkgname = 'obmenu-generator';
- our $VERSION = '0.55';
- our ($CONFIG, $SCHEMA);
- my $output_h = *STDOUT;
- my ($pipe, $static, $icons, $reconfigure, $stdout_config, $update_config);
- my $home_dir =
- $ENV{HOME}
- || $ENV{LOGDIR}
- || (getpwuid($<))[7]
- || `echo -n ~`;
- my $xdg_config_home = $ENV{XDG_CONFIG_HOME} || "$home_dir/.config";
- my $config_dir = "$xdg_config_home/obmenu-generator";
- my $schema_file = "$config_dir/schema.pl";
- my $config_file = "$config_dir/config.pl";
- my $openbox_conf = "$xdg_config_home/openbox";
- my $menufile = "$openbox_conf/menu.xml";
- my $icons_db = "$config_dir/icons.db";
- sub usage {
- print <<"HELP";
- usage: $0 [options]\n
- Options:
- -p : (re)generate a pipe menu
- -s : (re)generate a static menu
- -d : (re)generate icons.db (with -i)
- -r : (re)generate config file
- -i : use icons in menus
- -u : update the configuration file
- -R : reconfigure openbox
- Others:
- -h : print this message
- -S : print the schema file to STDOUT
- -H : print help message for config files
- Examples:
- ** Static menu without icons:
- $0 -s
- ** Pipe menu with icons:
- $0 -p -i
- ** Reconfigure openbox:
- $0 -R
- NOTE: After a pipe menu is generated, '-p' it's not needed anymore.
- ** Config file: $config_file
- ** Schema file: $schema_file
- HELP
- exit 0;
- }
- my $config_help = <<'HELP';
- categories_case_sensitive => BOOL
- - True (1) to make the categories case sensitive;
- - By default, "XFCE-4" is equivalent with "xfce_4".
- clean_command_name_re => REGEX
- - Remove from every command anything matched by the regex.
- skip_app_command_re => REGEX
- - Skip the application if its command matches the regex.
- skip_app_name_re => REGEX
- - Skip the application if its name matches the regex.
- skip_file_content_re => REGEX
- - Skip the application if the content of the *.desktop
- file matches the regex.
- skip_file_name_re => REGEX
- - Skip the application if its file name matches the regex.
- Name is from the last slash to the end. (example: name.desktop)
- skip_svg_icons => BOOL
- - True (1) to skip the SVG icons.
- desktop_files_paths => ARRAY REF
- - Paths which contains the desktop files.
- wine_desktop_files_paths => ARRAY REF
- - Directories which contains desktop files generated by the wine app.
- wine_skip_exec_re => REGEX
- - Skip the wine application if its command matches the regex.
- wine_skip_name_re => REGEX
- - Skip the wine application if its name matches the regex.
- editor => STRING
- - Text editor command.
- terminal => STRING
- - Terminal command.
- gtk_rc_filename => STRING
- - Absolute path to the GTK configuration file.
- icon_dirs_first => ARRAY REF
- - When looking for full icon paths, look in this directories first,
- before looking in the directories of the current icon theme.
- icon_dirs_second => ARRAY REF
- - When looking for full icon paths, look in this directories as a
- second icon theme. (Before /usr/share/pixmaps)
- icon_dirs_last => ARRAY REF
- - Look in this directories at the very last, after looked in
- /usr/share/pixmaps, /usr/share/icons/hicolor and some other
- directories.
- use_only_my_icon_dirs => BOOL
- - True (1) to look only in directories specified in the above ARRAY REF's.
- - False (0) to look in other directories. (example: /usr/share/pixmaps)
- missing_icon => STRING
- - When an icon is not found, use this icon instead.
- VERSION => NUMBER
- - The current version of obmenu-generator.
- HELP
- my $schema_help = <<'HELP';
- item: add an item into the menu
- {item => ["command", "label", "icon"]}
- cat: add a category into the menu
- {cat => ["name", "label", "icon"]}
- begin_cat: begin of a category
- {begin_cat => ["name", "icon"]}
- end_cat: end of a category
- {end_cat => undef}
- sep: menu line separator
- {sep => undef}
- {sep => "label"}
- exit: default "Exit" action
- {exit => ["label", "icon"]}
- raw: any valid Openbox XML string
- {raw => q(xml string)},
- obgenmenu: category provided by obmenu-generator
- {obgenmenu => "label"}
- scripts: executable scripts from a directory
- {scripts => ["/my/dir", BOOL, "icon"]}
- BOOL - can be either true or false (1 or 0)
- 0 => to open the script in background
- 1 => to open the script in a new terminal
- wine_apps: windows applications installed via wine
- {wine_apps => ["label", "icon"]}
- HELP
- sub full_help {
- print <<"HELP";
- =>> Schema file:
- $schema_help
- ====================================================
- =>> Config file:
- $config_help
- HELP
- exit 0;
- }
- if (@ARGV) {
- foreach my $arg (@ARGV) {
- if ($arg eq '-i') {
- $icons = 1;
- }
- elsif ($arg eq '-S') {
- $stdout_config = 1;
- }
- elsif ($arg eq '-p') {
- $pipe = 1;
- }
- elsif ($arg eq '-r') {
- $reconfigure = 1;
- }
- elsif ($arg eq '-s') {
- $static = 1;
- }
- elsif ($arg eq '-d') {
- unlink $icons_db;
- }
- elsif ($arg eq '-h') {
- usage();
- }
- elsif ($arg eq '-H') {
- full_help();
- }
- elsif ($arg eq '-u') {
- $update_config = 1;
- }
- elsif ($arg eq '-v') {
- print "$pkgname $VERSION\n";
- exit 0;
- }
- elsif ($arg eq '-R') {
- exec 'openbox', '--reconfigure';
- }
- }
- }
- if (not -d $config_dir) {
- require File::Path;
- File::Path::make_path($config_dir)
- or die "Can't create directory '${config_dir}': $!";
- }
- my $config_documentation = <<"EOD";
- #!/usr/bin/perl
- # $pkgname - configuration file
- # This file is updated automatically every time when is needed.
- # Any additional comment and/or indentation will be lost.
- =for comment
- $config_help
- =cut
- # For regular expressions
- # * is better to use qr/REGEX/ instead of 'REGEX'
- # * for case insensitive mode, use: qr/REGEX/i
- # NOTE: Once an icon is found, it will *NOT* be replaced by another.
- EOD
- my %CONFIG = (
- desktop_files_paths => ['/usr/share/applications'],
- wine_desktop_files_paths => ["$home_dir/.local/share/applications/wine"],
- gtk_rc_filename => undef,
- skip_file_name_re => undef,
- skip_app_name_re => undef,
- skip_app_command_re => undef,
- skip_file_content_re => undef,
- clean_command_name_re => undef,
- wine_skip_name_re => qr{^(?:Uninstall|Readme|Help|Visit|Register|Technical Support)\b}i,
- wine_skip_exec_re => undef,
- icon_dirs_first => [],
- icon_dirs_second => [],
- icon_dirs_last => [],
- missing_icon => 'gtk-missing-image',
- use_only_my_icon_dirs => 0,
- skip_svg_icons => 1,
- categories_case_sensitive => 0,
- terminal => $ENV{TERM} || 'xterm',
- editor => 'geany',
- VERSION => $VERSION,
- );
- sub dump_configuration {
- require Data::Dump;
- open my $config_fh, '>', $config_file
- or die "Can't open file '${config_file}' for write: $!";
- my $dumped_config = q{our $CONFIG = } . Data::Dump::dump(\%CONFIG);
- print $config_fh $config_documentation, $dumped_config;
- close $config_fh;
- }
- if (not -e $config_file or $reconfigure) {
- dump_configuration();
- }
- if (not -e $schema_file or $reconfigure or $stdout_config) {
- my $schema_fh = $stdout_config ? \*STDOUT : do {
- open my $fh, '>', $schema_file
- or die "Can't open file '${schema_file}' for write: $!";
- $fh;
- };
- print $schema_fh <<"SCHEMA_FILE";
- #!/usr/bin/perl
- # $pkgname - schema file
- =for comment
- $schema_help
- =cut
- # NOTE:
- # * Keys and values are case sensitive. Keep all keys lowercase.
- # * ICON can be a either a direct path to an icon or a valid icon name
- require '${config_file}';
- our \$SCHEMA = [
- # COMMAND LABEL ICON
- {item => ['pcmanfm', 'File Manager', 'file-manager']},
- {item => ['xterm', 'Terminal', 'terminal']},
- {item => ['geany', 'Editor', 'text-editor']},
- {item => ['google-chrome', 'Web Browser', 'web-browser']},
- {item => ['gmrun', 'Run command', 'system-run']},
- {item => ['pidgin', 'Instant messaging', 'system-users']},
- {sep => 'Applications'},
- # NAME LABEL ICON
- {cat => ['utility', 'Accessories', 'applications-utilities']},
- {cat => ['development', 'Development', 'applications-development']},
- {cat => ['education', 'Education', 'applications-science']},
- {cat => ['game', 'Games', 'applications-games']},
- {cat => ['graphics', 'Graphics', 'applications-graphics']},
- {cat => ['audiovideo', 'Multimedia', 'applications-multimedia']},
- {cat => ['network', 'Network', 'applications-internet']},
- {cat => ['office', 'Office', 'applications-office']},
- {cat => ['settings', 'Settings', 'applications-accessories']},
- {cat => ['system', 'System', 'applications-system']},
- #{cat => ['qt', 'QT Applications', 'qtlogo']},
- #{cat => ['gtk', 'GTK Applications', 'gnome-applications']},
- #{cat => ['x_xfce', 'XFCE Applications', 'applications-other']},
- #{cat => ['gnome', 'GNOME Applications', 'gnome-applications']},
- #{cat => ['consoleonly', 'CLI Applications', 'applications-utilities']},
- # LABEL ICON
- #{begin_cat => ['My category', 'cat-icon']},
- # ... some items ...
- #{end_cat => undef},
- # LABEL ICON
- #{wine_apps => ['Wine apps', 'applications-other']},
- # DIR BOOL ICON
- #{scripts => ['/my/path', 1, 'text-x-script']},
- {sep => undef},
- {obgenmenu => ['Openbox Settings', 'applications-engineering']},
- {sep => undef},
- {item => ['xscreensaver-command -lock', 'Lock', 'lock']},
- # This options uses the default OpenBox action "Exit"
- {exit => ['Exit', 'exit']},
- ]
- SCHEMA_FILE
- exit if $stdout_config;
- close $schema_fh;
- }
- require $schema_file; # Load the configuration files
- # Remove the user defined values
- #my @valid_keys = grep exists $CONFIG{$_}, keys %{$CONFIG};
- #@CONFIG{@valid_keys} = @{$CONFIG}{@valid_keys};
- # Keep the user defined values
- @CONFIG{keys %{$CONFIG}} = values %{$CONFIG};
- if ($CONFIG{VERSION} != $VERSION) {
- $update_config = 1;
- $CONFIG{VERSION} = $VERSION;
- }
- my $desk_obj = Linux::DesktopFiles->new(
- home_dir => $home_dir,
- terminal => $CONFIG{terminal},
- gtk_rc_filename => $CONFIG{gtk_rc_filename},
- icon_db_filename => $icons_db,
- desktop_files_paths => $CONFIG{desktop_files_paths},
- with_icons => $icons,
- skip_svg_icons => $CONFIG{skip_svg_icons},
- full_icon_paths => 1,
- terminalize => 1,
- keep_empty_categories => 1,
- icon_dirs_first => $CONFIG{icon_dirs_first},
- icon_dirs_second => $CONFIG{icon_dirs_second},
- icon_dirs_last => $CONFIG{icon_dirs_last},
- use_only_my_icon_dirs => $CONFIG{use_only_my_icon_dirs},
- skip_file_name_re => $CONFIG{skip_file_name_re},
- skip_app_name_re => $CONFIG{skip_app_name_re},
- skip_app_command_re => $CONFIG{skip_app_command_re},
- skip_file_content_re => $CONFIG{skip_file_content_re},
- clean_command_name_re => $CONFIG{subst_command_name_re},
- categories => [map $_->{cat}[0], grep exists $_->{cat}, @$SCHEMA],
- categories_case_sensitive => $CONFIG{categories_case_sensitive},
- );
- if ($pipe or $static) {
- my $menu_backup = $menufile . '.bak';
- if (not -e $menu_backup and -e $menufile) {
- require File::Copy;
- File::Copy::copy($menufile, $menu_backup);
- }
- if ($static) {
- open $output_h, '>', $menufile
- or die "Can't open file '${menufile}' for write: $!";
- }
- elsif ($pipe) {
- if (not -d $openbox_conf) {
- require File::Path;
- File::Path::make_path($openbox_conf)
- or die "Can't create directory '${openbox_conf}': $!";
- }
- require Cwd;
- my $exec_name = Cwd::abs_path($0) . ($icons ? q{ -i} : q{});
- open my $fh, '>', $menufile
- or die "Can't open file '${menufile}' for write: $!";
- print $fh <<"PIPE_MENU_HEADER";
- <?xml version="1.0" encoding="utf-8"?>
- <openbox_menu xmlns="http://openbox.org/"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://openbox.org/">
- <menu id="root-menu" label="obmenu-generator" execute="$exec_name" />
- </openbox_menu>
- PIPE_MENU_HEADER
- close $fh;
- }
- }
- my $generated_menu = $static
- ? <<'STATIC_MENU_HEADER'
- <?xml version="1.0" encoding="utf-8"?>
- <openbox_menu xmlns="http://openbox.org/"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://openbox.org/">
- <menu id="root-menu" label="Applications">
- STATIC_MENU_HEADER
- : "<openbox_pipe_menu>\n";
- sub prepare_item {
- $icons
- ? <<"ITEM_WITH_ICON"
- <item label="$_[1]" icon="${\($desk_obj->get_icon_path($_[2]) || $desk_obj->get_icon_path($CONFIG{missing_icon}))}"><action name="Execute"><execute>$_[0]</execute></action></item>
- ITEM_WITH_ICON
- : <<"ITEM";
- <item label="$_[1]"><action name="Execute"><execute>$_[0]</execute></action></item>
- ITEM
- }
- sub begin_category {
- $icons
- ? <<"MENU_WITH_ICON"
- <menu id="$_[0]" icon="${\$desk_obj->get_icon_path($_[1])}" label="$_[0]">
- MENU_WITH_ICON
- : <<"MENU"
- <menu id="$_[0]" label="$_[0]">
- MENU
- }
- my $categories = $desk_obj->parse_desktop_files();
- foreach my $schema (@$SCHEMA) {
- if (exists $schema->{cat}) {
- next unless defined $categories->{$schema->{cat}[0]};
- $generated_menu .= begin_category($schema->{cat}[1], ($icons ? $schema->{cat}[2] : ())) . join(
- q{},
- (
- map $_->[1],
- sort { $a->[0] cmp $b->[0] }
- map [lc($_) => $_],
- map {
- if ($_->{Name} =~ tr/"&//) {
- $_->{Name} =~ s/&/&/g;
- $_->{Name} =~ s/"/"/g;
- }
- $icons
- ? <<"ITEM_WITH_ICON"
- <item label="$_->{Name}" icon="$_->{Icon}"><action name="Execute"><execute>$_->{Exec}</execute></action></item>
- ITEM_WITH_ICON
- : <<"ITEM";
- <item label="$_->{Name}"><action name="Execute"><execute>$_->{Exec}</execute></action></item>
- ITEM
- } @{$categories->{$schema->{cat}[0]}}
- )
- )
- . qq[ </menu>\n];
- }
- elsif (exists $schema->{item}) {
- $generated_menu .= prepare_item(@{$schema->{item}});
- }
- elsif (exists $schema->{sep}) {
- $generated_menu .=
- defined $schema->{sep}
- ? qq[ <separator label="$schema->{sep}"/>\n]
- : qq[ <separator/>\n];
- }
- elsif (exists $schema->{wine_apps}) {
- my @output;
- my @dirs = @{$CONFIG{wine_desktop_files_paths}};
- while (@dirs) {
- my $dir = shift @dirs;
- opendir(my $dir_h, $dir) or next;
- while (defined(my $file = readdir $dir_h)) {
- if (substr($file, -8) eq '.desktop') {
- sysopen my $fh, "$dir/$file", 0 or next;
- sysread $fh, $_, -s "$dir/$file";
- close $fh;
- my ($exec) = (/^Exec=(.+)/m ? $1 : next);
- my ($name) = (/^Name=(.+)/m ? $1 : "Unknown name");
- if (defined $CONFIG{wine_skip_name_re}) {
- next if $name =~ $CONFIG{wine_skip_name_re};
- }
- if (defined $CONFIG{wine_skip_exec_re}) {
- next if $exec =~ $CONFIG{wine_skip_exec_re};
- }
- $exec =~ s{\\(.)}{$1}g;
- if ($name =~ tr/"&//) {
- $name =~ s{&}{&}g;
- $name =~ s{"}{"}g;
- }
- push @output,
- scalar {item => [$exec, $name, ($icons ? (/^Icon=(.+)/m ? $1 : $CONFIG{missing_icon}) : ())]};
- }
- elsif ($file eq '.' or $file eq '..') {
- next;
- }
- elsif (-d "$dir/$file") {
- push @dirs, "$dir/$file";
- }
- }
- closedir $dir_h;
- }
- $generated_menu .=
- begin_category(@{$schema->{wine_apps}})
- . join('', map prepare_item(@{$_->{item}}), sort { lc $a->{item}[1] cmp lc $b->{item}[1] } @output)
- . qq[ </menu>\n];
- }
- elsif (exists $schema->{scripts}) {
- my @scripts;
- my $dir = $schema->{scripts}[0];
- opendir(my $dir_h, $dir) or next;
- foreach my $file (sort readdir $dir_h) {
- if (-f "$dir/$file" and -x _ and not -z _) {
- $generated_menu .=
- prepare_item(($schema->{scripts}[1] ? qq{$CONFIG{terminal} -e '$dir/$file'} : "$dir/$file"),
- $file, ($icons ? $schema->{scripts}[2] : ()));
- }
- }
- closedir $dir_h;
- }
- elsif (exists $schema->{begin_cat}) {
- $generated_menu .= begin_category(@{$schema->{begin_cat}});
- }
- elsif (exists $schema->{end_cat}) {
- $generated_menu .= qq[ </menu>\n];
- }
- elsif (exists $schema->{exit}) {
- $generated_menu .= $icons
- ? <<"EXIT_WITH_ICON"
- <item label="Exit" icon="${\$desk_obj->get_icon_path($schema->{exit}[1])}"><action name="Exit" /></item>
- EXIT_WITH_ICON
- : <<'EXIT';
- <item label="Exit"><action name="Exit" /></item>
- EXIT
- }
- elsif (exists $schema->{raw}) {
- $generated_menu .= qq[ $schema->{raw}\n];
- }
- elsif (exists $schema->{obgenmenu}) {
- my ($name, $icon) = ref($schema->{obgenmenu}) eq 'ARRAY' ? (@{$schema->{obgenmenu}}) : $schema->{obgenmenu};
- $generated_menu .= ($icons ? <<"CONFIG_MENU_WITH_ICON" : <<"CONFIG_MENU") . <<'RECONFIGURE';
- <menu id="$name" label="$name" icon="${\$desk_obj->get_icon_path($icon)}">>
- CONFIG_MENU_WITH_ICON
- <menu id="$name" label="$name">
- CONFIG_MENU
- <item label="Reconfigure Openbox"><action name="Reconfigure" /></item>
- RECONFIGURE
- -e '/usr/bin/obconf' && ($generated_menu .= <<'EOL');
- <item label="Openbox Configuration Manager"><action name="Execute"><execute>obconf</execute></action></item>
- EOL
- $generated_menu .= <<"CONFIG_MENU";
- <item label="Configure autostarted apps"><action name="Execute"><execute>$CONFIG{editor} $openbox_conf/autostart</execute></action></item>
- <item label="Edit rc.xml"><action name="Execute"><execute>$CONFIG{editor} $openbox_conf/rc.xml</execute></action></item>
- <separator />
- <item label="Generate a pipe menu"><action name="Execute"><execute>$0 -p</execute></action></item>
- <item label="Generate a static menu"><action name="Execute"><execute>$0 -s</execute></action></item>
- <item label="Generate a pipe menu with icons"><action name="Execute"><execute>$0 -p -i</execute></action></item>
- <item label="Generate a static menu with icons"><action name="Execute"><execute>$0 -s -i</execute></action></item>
- <separator />
- <item label="Edit menu.xml"><action name="Execute"><execute>$CONFIG{editor} $menufile</execute></action></item>
- <item label="Edit the schema file"><action name="Execute"><execute>$CONFIG{editor} $schema_file</execute></action></item>
- <item label="Edit the configuration file"><action name="Execute"><execute>$CONFIG{editor} $config_file</execute></action></item>
- <separator />
- <item label="Regenerate configuration file"><action name="Execute"><execute>$0 -r</execute></action></item>
- </menu>
- CONFIG_MENU
- }
- }
- print $output_h $generated_menu, $static
- ? qq[ </menu>\n</openbox_menu>\n]
- : qq[</openbox_pipe_menu>\n];
- dump_configuration() if $update_config;
|