-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathschema.pl
89 lines (67 loc) · 3.58 KB
/
schema.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/usr/bin/perl
# fbmenugen - 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"},
raw: any valid Fluxbox menu entry {raw => q(...)},
beg: begin of a category {beg => ["name", "icon"]},
end: end of a category {end => undef},
fluxbox: the default Fluxbox config menu {fluxbox => ["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/fbmenugen/config.pl";
## Text editor
my $editor = $CONFIG->{editor};
our $SCHEMA = [
# COMMAND LABEL ICON
{item => ['xdg-open .', 'File Manager', 'system-file-manager']},
{item => ['xterm', 'Terminal', 'utilities-terminal']},
{item => ['xdg-open http://', 'Web Browser', 'web-browser']},
{item => ['fbrun', 'Run command', 'system-run']},
{sep => 'undef'},
# 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']},
# LABEL ICON
#{beg => ['My category', 'cat-icon']},
# ... some items ...
#{end => undef},
## Custom advanced settings
{sep => undef},
{beg => ['Advanced Settings', 'applications-engineering']},
# Configuration files
{item => ["$editor ~/.conkyrc", 'Conky RC', 'text-x-generic']},
{item => ["$editor ~/.config/tint2/tint2rc", 'Tint2 Panel', 'text-x-generic']},
# fbmenugen category
{beg => ['Fbmenugen', 'accessories-text-editor']},
{item => ["$editor ~/.config/fbmenugen/schema.pl", 'Menu Schema', 'text-x-generic']},
{item => ["$editor ~/.config/fbmenugen/config.pl", 'Menu Config', 'text-x-generic']},
{sep => undef},
{item => ['fbmenugen -i', 'Generate a menu with icons', 'accessories-text-editor']},
{item => ['fbmenugen -g', 'Generate a menu without icons', 'accessories-text-editor']},
{sep => undef},
{item => ['fbmenugen -d', 'Refresh cache', 'view-refresh']},
{end => undef},
# Fluxbox category
{fluxbox => ['Fluxbox', 'preferences-desktop']},
{end => undef},
{sep => undef},
# Regenerate the menu
{regenerate => ['Refresh', 'view-refresh']},
# This option uses the default Fluxbox's "Exit" action
{exit => ['Exit', 'application-exit']},
]