mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-07 20:27:02 +01:00
b38460f044
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
163 lines
4.7 KiB
Bash
163 lines
4.7 KiB
Bash
% -*-Mode: Shell-Script;-*-
|
|
% Anybody volunteering to write a dedicated Emacs mode?
|
|
%
|
|
% /usr/share/uwm-$VER/config/appmenu
|
|
%
|
|
% Additional entries in the main menu. The entries are added at the
|
|
% end of the menu.
|
|
%
|
|
% Please read /usr/doc/uwm-$VER/uwm_manual.lyx and/or
|
|
% /usr/doc/uwm-$VER/manual.dvi for more information.
|
|
|
|
% A menu definition file is a hierarchical file made up of the
|
|
% following commands:
|
|
%
|
|
% SUBMENU "<name>" {'commands to build submenu'}
|
|
% Will create a submenu named <name> with the items created by
|
|
% the commands inside the braces.
|
|
%
|
|
% ITEM "<name>":"<command>";
|
|
% Will create an item on the corresponding position named <name>
|
|
% which will lead to the execution of <command> if selected. The
|
|
% item is not created in case there already exists an item with
|
|
% the same <name> in the same submenu.
|
|
%
|
|
% LINE;
|
|
% Will add a seperation line to the corresponding
|
|
% position. Several "LINE"s with nothing else in between will be
|
|
% truncatd to a single seperator.
|
|
%
|
|
% FILE "<filename>";
|
|
% Will process the named file as if its contents were in the
|
|
% position of the "FILE" command. The file is searched for in
|
|
% the way described above and passed through the preprocessor.
|
|
%
|
|
% PIPE "<command>";
|
|
% Will call <command> and process its standard output as if it
|
|
% was in the position of the "PIPE" command. The commands output
|
|
% is not passed through the preprocessor.
|
|
|
|
SUBMENU "Applications" folder {
|
|
ITEM "Dolphin": "dolphin ";
|
|
ITEM "Midnight Commander": "xterm -e mc ";
|
|
}
|
|
SUBMENU "Development" folder {
|
|
ITEM "Qt Assistant": "assistant ";
|
|
ITEM "Qt Designer": "designer ";
|
|
ITEM "Qt Linguist": "linguist ";
|
|
}
|
|
SUBMENU "Editors" folder {
|
|
ITEM "Emacs": "emacs ";
|
|
ITEM "Gvim": "gvim ";
|
|
ITEM "Jed": "xterm -e jed ";
|
|
ITEM "Joe": "xterm -e joe ";
|
|
ITEM "Kate": "kate ";
|
|
ITEM "Kwrite": "kwrite ";
|
|
ITEM "Nano": "xterm -e nano ";
|
|
ITEM "Pico": "xterm -e pico ";
|
|
ITEM "Vim": "xterm -e vim ";
|
|
}
|
|
SUBMENU "Graphics" folder {
|
|
SUBMENU "Image Viewers" folder {
|
|
ITEM "Display": "display ";
|
|
ITEM "Geeqie": "geeqie ";
|
|
ITEM "Gwenview": "gwenview ";
|
|
ITEM "Xv": "xv ";
|
|
}
|
|
ITEM "Bitmap": "bitmap ";
|
|
ITEM "Gimp": "gimp ";
|
|
ITEM "Kcolorchooser": "kcolorchooser ";
|
|
ITEM "Kolourpaint": "kolourpaint ";
|
|
ITEM "Xfig": "xfig ";
|
|
ITEM "Xfractint": "xterm -e xfractint ";
|
|
ITEM "Xpaint": "xpaint ";
|
|
ITEM "Xsane": "xsane ";
|
|
}
|
|
SUBMENU "Multimedia" folder {
|
|
ITEM "Audacious": "audacious ";
|
|
ITEM "Aumix": "aumix ";
|
|
ITEM "Dragon Player": "dragon";
|
|
ITEM "Kaudiocreator": "kaudiocreator ";
|
|
ITEM "Kmix": "kmix ";
|
|
ITEM "Mplayer": "gmplayer &";
|
|
ITEM "Xine": "xine ";
|
|
ITEM "Xmms": "xmms ";
|
|
}
|
|
SUBMENU "Network" folder {
|
|
ITEM "Akregator": "akregator ";
|
|
ITEM "Alpine": "xterm -e alpine ";
|
|
ITEM "Gnome Ftp": "gftp ";
|
|
ITEM "Kget": "kget ";
|
|
ITEM "Kmail": "kmail ";
|
|
ITEM "Knode": "knode ";
|
|
ITEM "Konqueror": "konqueror ";
|
|
ITEM "Links": "xterm -e links ";
|
|
ITEM "Lynx": "xterm -e lynx ";
|
|
ITEM "Mozilla": "mozilla ";
|
|
ITEM "Mozilla Firefox": "firefox ";
|
|
ITEM "Mozilla Thunderbird": "thunderbird ";
|
|
ITEM "Mutt": "xterm -e mutt ";
|
|
ITEM "Pidgin": "pidgin ";
|
|
ITEM "Pine": "xterm -e pine ";
|
|
ITEM "X3270": "x3270 ";
|
|
ITEM "Xchat": "xchat ";
|
|
}
|
|
SUBMENU "Office" folder {
|
|
SUBMENU "Document Viewers" folder {
|
|
ITEM "Gv": "gv ";
|
|
ITEM "Okular": "okular ";
|
|
ITEM "Xdvi": "xdvi ";
|
|
ITEM "Xpdf": "xpdf ";
|
|
}
|
|
ITEM "Karbon": "karbon ";
|
|
ITEM "Kontact": "kontact ";
|
|
ITEM "Kpresenter": "kpresenter ";
|
|
ITEM "Kspread": "kspread ";
|
|
ITEM "Kword": "kword ";
|
|
}
|
|
SUBMENU "Other Wm" folder {
|
|
}
|
|
SUBMENU "Shells" folder {
|
|
ITEM "Bash": "xterm -e bash ";
|
|
ITEM "Konsole": "konsole ";
|
|
ITEM "Ksh": "xterm -e ksh ";
|
|
ITEM "Rxvt": "rxvt ";
|
|
ITEM "Tcsh": "xterm -e tcsh ";
|
|
ITEM "Xterm": "xterm ";
|
|
ITEM "Zsh": "xterm -e zsh ";
|
|
}
|
|
SUBMENU "System" folder {
|
|
ITEM "Gkrellm": "gkrellm ";
|
|
ITEM "Kdiskfree": "kdf ";
|
|
ITEM "Kleopatra": "kleopatra ";
|
|
ITEM "Ksystemlog": "ksystemlog ";
|
|
}
|
|
SUBMENU "Utilities" folder {
|
|
SUBMENU "Desktop" folder {
|
|
ITEM "Xroach": "xroach ";
|
|
ITEM "Xsnow": "xsnow ";
|
|
}
|
|
ITEM "Ark": "ark ";
|
|
ITEM "Font Selection": "xfontsel ";
|
|
ITEM "Gucharmap": "gucharmap ";
|
|
ITEM "Kaddressbook": "kaddressbook ";
|
|
ITEM "Kalarm": "kalarm ";
|
|
ITEM "Kcalc": "kcalc ";
|
|
ITEM "KDE Character Selector": "kcharselect ";
|
|
ITEM "KDE Find Tool": "kfind ";
|
|
ITEM "KDE Help Center": "khelpcenter ";
|
|
ITEM "Kfontview": "kfontview ";
|
|
ITEM "Kjots": "kjots ";
|
|
ITEM "Knotes": "knotes ";
|
|
ITEM "Korganizer": "korganizer ";
|
|
ITEM "Kruler": "kruler ";
|
|
ITEM "Ksnapshot": "ksnapshot ";
|
|
ITEM "Ktimetracker": "ktimetracker ";
|
|
ITEM "Oclock": "oclock ";
|
|
ITEM "Rclock": "rclock ";
|
|
ITEM "X Calculator": "xcalc ";
|
|
ITEM "X Logo": "xlogo ";
|
|
ITEM "Xclock": "xclock ";
|
|
ITEM "Xeyes": "xeyes ";
|
|
ITEM "Xmag": "xmag ";
|
|
}
|