32 lines
1.4 KiB
Raku
32 lines
1.4 KiB
Raku
#!/usr/bin/perl
|
|
|
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
|
|
|
# obmenu-generator - schema file
|
|
|
|
require "$ENV{HOME}/.config/obmenu-generator/config.pl";
|
|
|
|
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', 'gnome-settings']},
|
|
{cat => ['system', 'System', 'applications-system']},
|
|
|
|
#{sep},
|
|
#{cat => ['qt', 'QT Applications', 'qt4logo']},
|
|
#{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']},
|
|
]
|