52 lines
2.5 KiB
Text
52 lines
2.5 KiB
Text
|
#!/usr/bin/perl
|
||
|
|
||
|
# obmenu-generator - schema file
|
||
|
|
||
|
=for comment
|
||
|
|
||
|
item: add an item inside the menu {item => ["command", "label", "icon"]},
|
||
|
cat: add a category inside the menu {cat => ["name", "label", "icon"]},
|
||
|
sep: horizontal line separator {sep => undef}, {sep => "label"},
|
||
|
pipe: a pipe menu entry {pipe => ["command", "label", "icon"]},
|
||
|
raw: any valid Openbox XML string {raw => q(xml string)},
|
||
|
begin_cat: begin of a category {begin_cat => ["name", "icon"]},
|
||
|
end_cat: end of a category {end_cat => undef},
|
||
|
obgenmenu: generic menu settings {obgenmenu => ["label", "icon"]},
|
||
|
exit: default "Exit" action {exit => ["label", "icon"]},
|
||
|
|
||
|
=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
|
||
|
# * Category names are case insensitive. (X-XFCE and x_xfce are equivalent)
|
||
|
|
||
|
require "$ENV{HOME}/.config/obmenu-generator/config.pl";
|
||
|
|
||
|
## Text editor
|
||
|
my $editor = $CONFIG->{editor};
|
||
|
|
||
|
our $SCHEMA = [
|
||
|
{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 => ['other', 'Other', 'applications-other']},
|
||
|
{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']},
|
||
|
|
||
|
]
|