Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

deskmenu(1) [debian man page]

deskmenu(1)						      General Commands Manual						       deskmenu(1)

NAME
deskmenu - A root menu for X SYNTAX
deskmenu <argument> DESCRIPTION
DeskMenu is a root menu program which is activated by clicking the root window. It is configured from a .deskmenurc file in your home directory, see example_rc for more details. You can use deskmenu for session management by making it the last line of your .xinitrc and using the --quit command line option, which adds a quit option to the menu. NOTE: Deskmenu will do nothing unless you have a ${HOME}/.deskmenurc file or a /etc/deskmenurc (/etc/deskmenurc.debian is automatically generated) This manpage is specific to the debian package of deskmenu. IMPORTANT NOTE: You have to set a keycode, when using this version of keylaunch, in your config file. OPTIONS
-b, --button=n Sets which mouse button is used to invoke deskmenu -f, --file=n Sets which config file will be used for deskmenu --quit-menu Display a "Quit-Menu" in the deskmenu --verbose Print more information -h, --help Display a short help and exit -V, --version Output version information and exit --display Use an alternative display instead of $DISPLAY The most common ways of invoking deskmenu deskmenu --button=[1...5] --file=/home/user/.deskmenurc.example FILES
${HOME}/.deskmenurc /etc/deskmenurc.debian RCFILE
# menuitem=label:command # submenu=label # menuitem=label:command # endmenu= # divider= # windowlist=label # workspaces=label # include=/path/to/include_file # keycode=modifier+keyname # for example Control+Escape # this keycode is used as "hotkey" # to display the menu. # menuitem=Terminal:x-terminal-emulator divider= submenu=Programs menuitem=The Gimp:gimp menuitem=Netscape:netscape endmenu= menu=Multimedia menuitem=GQmpeg:gqmpeg menuitem=Audio Mixer:gmix endmenu= divider= include=/etc/extra_menu divider= windowlist=Window List workspaces=Workspaces AUTHORS
Ken Lynch <kenlynch@blueyonder.co.uk> (c) 2001 Ken stopped developing on Deskmenu in late 2001. Stefan Pfetzing <dreamind@dreamind.de> (c) 2002-2010 The current developer of Deskmenu. This manpage was written for the Debian GNU/Linux package of this program by Brandon L. Griffith <brandon@debian.org> because the origonal program did not include one. You are free to edit, translate, convert, or otherwise do anything you wish with this manpage. This program was patched with a diff from Martin Hedenfalk <mhe@hjome.se> to allow submenu recursion. Updated and added to the official deskmenu by Stefan Pfetzing <dreamind@dreamind.de> SEE ALSO
desklaunch(1) keylaunch(1) oroborus(1) dfm(1) 1.3.x deskmenu(1)

Check Out this Related Man Page

Menu::Item(3pm) 					User Contributed Perl Documentation					   Menu::Item(3pm)

NAME
Tk::Menu::Item - Base class for Menu items SYNOPSIS
require Tk::Menu::Item; my $but = $menu->Button(...); $but->configure(...); my $what = $but->cget(); package Whatever; require Tk::Menu::Item; @ISA = qw(Tk::Menu::Item); sub PreInit { my ($class,$menu,$info) = @_; $info->{'-xxxxx'} = ... my $y = delete $info->{'-yyyy'}; } DESCRIPTION
Tk::Menu::Item is the base class from which Tk::Menu::Button, Tk::Menu::Cascade, Tk::Menu::Radiobutton and Tk::Menu::Checkbutton are derived. There is also a Tk::Menu::Separator. Constructors are declared so that $menu->Button(...) etc. do what you would expect. The "-label" option is pre-processed allowing ~ to be prefixed to the character to derive a "-underline" value. Thus $menu->Button(-label => 'Goto ~Home',...) is equivalent to $menu->Button(-label => 'Goto Home', -underline => 6, ...) The "Cascade" menu item creates a sub-menu and accepts these options: -menuitems A list of items for the sub-menu. Within this list (which is also accepted by Menu and Menubutton) the first two elements of each item should be the "constructor" name and the label: -menuitems => [ [Button => '~Quit', -command => [destroy => $mw]], [Checkbutton => '~Oil', -variable => $oil], ] -postcommand A callback to be invoked before posting the menu. -tearoff Specifies whether sub-menu can be torn-off or not. -menuvar Scalar reference that will be set to the newly-created sub-menu. The returned object is currently a blessed reference to an array of two items: the containing Menu and the 'label'. Methods "configure" and "cget" are mapped onto underlying "entryconfigure" and "entrycget". The main purpose of the OO interface is to allow derived item classes to be defined which pre-set the options used to create a more basic item. BUGS
This OO interface is very new. Using the label as the "key" is a problem for separaror items which don't have one. The alternative would be to use an index into the menu but that is a problem if items are deleted (or inserted other than at the end). There should probably be a PostInit entry point too, or a more widget like defered 'configure'. perl v5.14.2 2010-05-29 Menu::Item(3pm)
Man Page