Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

aeclients(1x) [debian man page]

AECLIENTS(1x)															     AECLIENTS(1x)

NAME
aemenu, aepanel, aesession, switch-desk - programs for use with aewm(1x) SYNOPSIS
aemenu [--config|-rc <file>] [-s|--switch] aepanel [--config|-rc <file>] [-b|--bottom] aesession aedesk [-n <num>] [[+|-]<num>] DESCRIPTION
The programs listed above provide several window and session management features to complement aewm(1x). aemenu and aepanel launch pro- grams and raise existing windows (or unhide iconified ones). aemenu uses a popup menu to accomplish this (the --switch option changes the function of this menu), while aepanel stays on the screen inbetween uses (launching and switching functionality are both always available). Each program comes in both a GTK+ and a Xaw version; aemenu is actually a symlink to either aemenu-gtk or aemenu-xaw (likewise for aepanel). The list of programs to be run by both clients is read from $HOME/.aewm/clientsrc. There are two kinds of directives that may be used in this file: cmd "Description" "command" defines a command, which whill be interpreted by sh(1). menu "Title" (...) end defines a submenu. The number of submenus that can be nested within each other is limited only by stack space. Double quotes may be included within quoted strings by escaping them with a blackslash ("), and quotes may be omitted around single-word descriptions or com- mands. Blank lines and lines starting with '#' are ignored. aesession is a do-nothing program; it will simply reap any children it inherits and then sleep. By ending your $HOME/.xsession script with "exec aesession", you can exit and restart aewm(1x) without killing your X session. The author does not really expect anyone except WM hackers to find this useful. aedesk changes to a new virtual desktop, specfied by num, or sets the number of available desktops, with -n. FILES
$HOME/.aewm/clientsrc SEE ALSO
aewm(1x) AUTHORS
Decklin Foster <decklin@red-bean.com> Adam Sampson <ats@offog.org> AECLIENTS(1x)

Check Out this Related Man Page

tk_popup(1T)						       Tk Built-In Commands						      tk_popup(1T)

__________________________________________________________________________________________________________________________________________________

NAME
tk_popup - Post a popup menu SYNOPSIS
tk_popup menu x y ?entry? _________________________________________________________________ DESCRIPTION
This procedure posts a menu at a given position on the screen and configures Tk so that the menu and its cascaded children can be traversed with the mouse or the keyboard. Menu is the name of a menu widget and x and y are the root coordinates at which to display the menu. If entry is omitted or an empty string, the menu's upper left corner is positioned at the given point. Otherwise entry gives the index of an entry in menu and the menu will be positioned so that the entry is positioned over the given point. EXAMPLE
How to attach a simple popup menu to a widget. # Create a menu set m [menu .popupMenu] $m add command -label "Example 1" -command bell $m add command -label "Example 2" -command bell # Create something to attach it to pack [label .l -text "Click me!"] # Arrange for the menu to pop up when the label is clicked bind .l <1> {tk_popup .popupMenu %X %Y} SEE ALSO
bind(1T), menu(1T), tk_optionMenu(1T) KEYWORDS
menu, popup ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +--------------------+-----------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +--------------------+-----------------+ |Availability | SUNWTk | +--------------------+-----------------+ |Interface Stability | Uncommitted | +--------------------+-----------------+ NOTES
Source for Tk is available on http://opensolaris.org. Tk 4.0 tk_popup(1T)
Man Page