2017-10-16 14:38:02 -05:00
|
|
|
#!/usr/bin/perl
|
|
|
|
|
|
|
|
# obmenu-generator - schema file
|
|
|
|
|
|
|
|
=for comment
|
|
|
|
|
2018-02-05 21:31:56 -06:00
|
|
|
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"]},
|
|
|
|
file: include the content of an XML file {file => "/path/to/file.xml"},
|
|
|
|
raw: any XML data supported by Openbox {raw => q(xml data)},
|
2017-10-16 14:38:02 -05:00
|
|
|
begin_cat: beginning of a category {begin_cat => ["name", "icon"]},
|
2018-02-05 21:31:56 -06:00
|
|
|
end_cat: end of a category {end_cat => undef},
|
2017-10-16 14:38:02 -05:00
|
|
|
obgenmenu: generic menu settings {obgenmenu => ["label", "icon"]},
|
2018-02-05 21:31:56 -06:00
|
|
|
exit: default "Exit" action {exit => ["label", "icon"]},
|
2017-10-16 14:38:02 -05:00
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
require "$ENV{HOME}/.config/obmenu-generator/config.pl";
|
|
|
|
|
|
|
|
## Text editor
|
|
|
|
my $editor = $CONFIG->{editor};
|
|
|
|
|
|
|
|
our $SCHEMA = [
|
2017-12-17 12:06:39 -06:00
|
|
|
# Format: NAME, LABEL, ICON
|
|
|
|
{sep => "ArchLabs"},
|
|
|
|
{item => ['exo-open --launch TerminalEmulator', 'Terminal', 'terminal']},
|
|
|
|
{item => ['exo-open --launch WebBrowser ', 'Web Browser', 'firefox']},
|
|
|
|
{item => ['exo-open --launch FileManager', 'File Manager', 'file-manager']},
|
2017-10-16 14:38:02 -05:00
|
|
|
{sep => undef},
|
2017-12-17 12:06:39 -06:00
|
|
|
{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', 'gnome-settings']},
|
|
|
|
{cat => ['system', 'System', 'applications-system']},
|
2017-10-16 14:38:02 -05:00
|
|
|
{sep => undef},
|
2017-12-17 12:06:39 -06:00
|
|
|
{pipe => ['al-places-pipemenu --recent ~/', 'Places', 'folder']},
|
2017-10-16 14:38:02 -05:00
|
|
|
{sep => undef},
|
2017-12-17 12:06:39 -06:00
|
|
|
{begin_cat => ['Preferences', 'theme']},
|
|
|
|
{begin_cat => ['Openbox', 'openbox']},
|
|
|
|
{item => ['obconf', 'Settings Editor', 'theme']},
|
|
|
|
{item => ['kickshaw', 'Menu Editor', 'openbox']},
|
|
|
|
{item => ['obkey', 'Keybind Editor', 'openbox']},
|
|
|
|
{item => ['ob-autostart', 'Autostart Editor', 'openbox']},
|
|
|
|
{sep => undef},
|
|
|
|
{item => ["exo-open ~/.config/openbox/menu.xml", 'Edit menu.xml', 'text-xml']},
|
|
|
|
{item => ["exo-open ~/.config/openbox/rc.xml", 'Edit rc.xml', 'text-xml']},
|
|
|
|
{item => ["exo-open ~/.config/openbox/autostart", 'Edit autostart', 'text-xml']},
|
|
|
|
{sep => undef},
|
|
|
|
{item => ['openbox --restart', 'Openbox Restart', 'openbox']},
|
|
|
|
{item => ['openbox --reconfigure', 'Openbox Reconfigure', 'openbox']},
|
|
|
|
{end_cat => undef},
|
|
|
|
{item => ['xfce4-appearance-settings', 'GTK Appearance', 'preferences-desktop-theme']},
|
|
|
|
{item => ['nitrogen', 'Change Wallpaper', 'nitrogen']},
|
|
|
|
{sep => undef},
|
|
|
|
{pipe => ['al-compositor', 'Compositor', 'compton']},
|
|
|
|
{pipe => ['al-polybar-pipemenu', 'Polybar', 'polybar']},
|
|
|
|
{pipe => ['al-conky-pipemenu', 'Conky', 'conky']},
|
|
|
|
{pipe => ['al-tint2-pipemenu', 'Tint2', 'tint2']},
|
|
|
|
{item => ['rofi-theme-selector', 'Rofi Theme', 'theme']},
|
|
|
|
{item => ['al-panel-chooser', 'Panel Chooser', 'panel']},
|
|
|
|
{sep => undef},
|
|
|
|
{item => ['xfce4-settings-manager', 'Xfce4 Settings Manager', 'preferences-desktop']},
|
|
|
|
{item => ['pavucontrol', 'Pulseaudio Preferences', 'multimedia-volume-control']},
|
|
|
|
{item => ['exo-preferred-applications', 'Preferred Applications', 'preferred-applications']},
|
|
|
|
{item => ['arandr', 'Screen Layout Editor', 'display']},
|
2017-10-16 14:38:02 -05:00
|
|
|
{end_cat => undef},
|
|
|
|
{sep => undef},
|
2017-12-17 12:06:39 -06:00
|
|
|
{begin_cat => ['Menu Generator', 'menu-editor']},
|
|
|
|
{item => ["$editor ~/.config/obmenu-generator/schema.pl", 'Menu Layout', 'text-x-source']},
|
|
|
|
{sep => undef},
|
|
|
|
{item => ['obmenu-generator -p', 'Generate a pipe menu', 'menu-editor']},
|
|
|
|
{item => ['obmenu-generator -s -c', 'Generate a static menu', 'menu-editor']},
|
2017-10-16 14:38:02 -05:00
|
|
|
{end_cat => undef},
|
2018-03-03 16:54:07 -06:00
|
|
|
{item => ["switchmenu --static", 'Switch Menu', 'menu-editor']},
|
2017-12-17 12:06:39 -06:00
|
|
|
{pipe => ['al-kb-pipemenu', 'Display Keybinds', 'cs-keyboard']},
|
|
|
|
{pipe => ['al-help-pipemenu', 'Help and Info', 'info']},
|
|
|
|
{sep => undef},
|
|
|
|
{item => ['i3lock-fancy -p', 'Lock Screen', 'lock']},
|
|
|
|
{item => ['oblogout', 'Exit Openbox', 'exit']},
|
2018-05-08 02:34:04 -05:00
|
|
|
]
|