config.h
[xmenu] / xmenu.1
CommitLineData
08f16589 1.TH PROG 1
2.SH NAME
3xmenu \- menu utility for X
4.SH SYNOPSIS
5.B xmenu
6.RB [ \-w ]
7.SH DESCRIPTION
8.B xmenu
9is a menu for X,
10it reads a list of newline-separated items from stdin,
11shows a menu for the user to select one of the items,
12and outputs the item selected to stdout.
13.PP
14The options are as follows:
15.TP
16.B -w
17Asks the window manager to draw a border around the menus.
18Without this options, the menus do not have border drawn by the window manager.
19.PP
20Each item read from stdin has the following format:
21.IP
22.EX
23ITEM := TABS LABEL TABS COMMAND NEWLINE
24.EE
25.PP
26That means, each item is composed by
27tabs, followed by a label, followed by more tabs, followed by a command,
28and ended by a newline.
29.IP
30The initial tabs indicate the menu hierarchy:
31items indented with a tab is shown in a submenu of the preceding item not indented.
32.IP
33The label is the string that will be shown as a item in the menu.
34An item without label is considered a separator and is drawn as a thin line in the menu
35separating the item above from the item below.
36.IP
37The command is the string that will be output after selecting the item.
38.IP
39The newline terminates the item specification.
40.SH EXAMPLES
41The following is an script exemplifying the use
42.BR xmenu .
43The output is redirected to xargs to make a command to be run by the shell.
44.IP
45.EX
46#!/bin/sh
47
48cat <<EOF | ./xmenu | xargs sh -c
49Applications
50 Web Browser firefox
51 Image editor gimp
52Terminal (xterm) xterm
53Terminal (urxvt) urxvt
54Terminal (st) st
55
56Shutdown poweroff
57Reboot reboot
58EOF
59.EE
60.PP
61For example, by selecting \(lqApplications\(rq, a new menu will appear.
62Selecting \(lqWeb Browser\(rq in the new menu will open firefox.
63.SH SEE ALSO
64.IR dmenu (1),
65.IR 9menu (1),
66.IR thingmenu (1)