2007-09-30 18:20:31 +01:00
|
|
|
.TH DMENU 1 dmenu\-VERSION
|
2006-08-04 08:35:27 +01:00
|
|
|
.SH NAME
|
|
|
|
dmenu \- dynamic menu
|
|
|
|
.SH SYNOPSIS
|
|
|
|
.B dmenu
|
2008-05-19 20:29:32 +01:00
|
|
|
.RB [ \-b ]
|
2011-05-08 15:15:24 +01:00
|
|
|
.RB [ \-f ]
|
2010-07-31 14:56:27 +01:00
|
|
|
.RB [ \-i ]
|
2010-08-02 14:22:54 +01:00
|
|
|
.RB [ \-l
|
|
|
|
.IR lines ]
|
|
|
|
.RB [ \-p
|
|
|
|
.IR prompt ]
|
|
|
|
.RB [ \-fn
|
|
|
|
.IR font ]
|
|
|
|
.RB [ \-nb
|
|
|
|
.IR color ]
|
|
|
|
.RB [ \-nf
|
|
|
|
.IR color ]
|
|
|
|
.RB [ \-sb
|
|
|
|
.IR color ]
|
|
|
|
.RB [ \-sf
|
|
|
|
.IR color ]
|
2006-08-04 08:35:27 +01:00
|
|
|
.RB [ \-v ]
|
2010-08-02 14:22:54 +01:00
|
|
|
.P
|
|
|
|
.BR dmenu_run " ..."
|
2006-08-04 08:35:27 +01:00
|
|
|
.SH DESCRIPTION
|
2010-07-31 14:56:27 +01:00
|
|
|
.B dmenu
|
2011-09-20 00:06:13 +01:00
|
|
|
is a dynamic menu for X, which reads a list of newline\-separated items from
|
|
|
|
stdin. When the user selects an item and presses Return, their choice is printed
|
|
|
|
to stdout and dmenu terminates. Entering text will narrow the items to those
|
|
|
|
matching the tokens in the input.
|
2010-07-31 14:56:27 +01:00
|
|
|
.P
|
|
|
|
.B dmenu_run
|
2011-06-13 21:50:31 +01:00
|
|
|
is a dmenu script used by dwm which lists programs in the user's $PATH and
|
2010-08-02 14:22:54 +01:00
|
|
|
executes the selected item.
|
|
|
|
.SH OPTIONS
|
2006-08-04 08:35:27 +01:00
|
|
|
.TP
|
2008-05-19 20:29:32 +01:00
|
|
|
.B \-b
|
2010-07-31 14:56:27 +01:00
|
|
|
dmenu appears at the bottom of the screen.
|
2008-05-19 20:29:32 +01:00
|
|
|
.TP
|
2011-05-08 15:15:24 +01:00
|
|
|
.B \-f
|
2011-09-20 00:06:13 +01:00
|
|
|
dmenu grabs the keyboard before reading stdin. This is faster, but will lock up
|
|
|
|
X until stdin reaches end\-of\-file.
|
2011-05-08 15:15:24 +01:00
|
|
|
.TP
|
2010-07-31 14:56:27 +01:00
|
|
|
.B \-i
|
2010-08-02 14:22:54 +01:00
|
|
|
dmenu matches menu items case insensitively.
|
2010-06-09 10:13:26 +01:00
|
|
|
.TP
|
2010-08-02 14:22:54 +01:00
|
|
|
.BI \-l " lines"
|
2010-07-31 14:56:27 +01:00
|
|
|
dmenu lists items vertically, with the given number of lines.
|
|
|
|
.TP
|
2010-08-02 14:22:54 +01:00
|
|
|
.BI \-p " prompt"
|
2010-08-05 15:41:56 +01:00
|
|
|
defines the prompt to be displayed to the left of the input field.
|
2009-11-28 12:28:15 +00:00
|
|
|
.TP
|
2010-08-02 14:22:54 +01:00
|
|
|
.BI \-fn " font"
|
2010-08-20 13:50:44 +01:00
|
|
|
defines the font or font set used.
|
2006-09-26 12:20:47 +01:00
|
|
|
.TP
|
2010-08-02 14:22:54 +01:00
|
|
|
.BI \-nb " color"
|
|
|
|
defines the normal background color.
|
|
|
|
.IR #RGB ,
|
|
|
|
.IR #RRGGBB ,
|
2011-05-08 15:15:24 +01:00
|
|
|
and X color names are supported.
|
2006-09-26 12:20:47 +01:00
|
|
|
.TP
|
2010-08-02 14:22:54 +01:00
|
|
|
.BI \-nf " color"
|
|
|
|
defines the normal foreground color.
|
2006-12-19 10:39:07 +00:00
|
|
|
.TP
|
2010-08-02 14:22:54 +01:00
|
|
|
.BI \-sb " color"
|
|
|
|
defines the selected background color.
|
2006-09-26 12:20:47 +01:00
|
|
|
.TP
|
2010-08-02 14:22:54 +01:00
|
|
|
.BI \-sf " color"
|
|
|
|
defines the selected foreground color.
|
2006-09-26 12:20:47 +01:00
|
|
|
.TP
|
2006-08-04 08:35:27 +01:00
|
|
|
.B \-v
|
2011-05-08 15:15:24 +01:00
|
|
|
prints version information to stdout, then exits.
|
2006-08-07 13:07:04 +01:00
|
|
|
.SH USAGE
|
2010-07-31 14:56:27 +01:00
|
|
|
dmenu is completely controlled by the keyboard. Besides standard Unix line
|
2011-05-18 16:20:03 +01:00
|
|
|
editing and item selection (arrow keys, page up/down, home and end), the
|
2010-07-31 14:56:27 +01:00
|
|
|
following keys are recognized:
|
2006-12-12 08:57:42 +00:00
|
|
|
.TP
|
2011-05-18 16:20:03 +01:00
|
|
|
.B Tab (Ctrl\-i)
|
2006-08-07 13:07:04 +01:00
|
|
|
Copy the selected item to the input field.
|
|
|
|
.TP
|
2011-05-18 16:20:03 +01:00
|
|
|
.B Return (Ctrl\-j)
|
2011-05-08 15:15:24 +01:00
|
|
|
Confirm selection. Prints the selected item to stdout and exits, returning
|
|
|
|
success.
|
2006-08-07 13:07:04 +01:00
|
|
|
.TP
|
2011-05-18 16:20:03 +01:00
|
|
|
.B Shift\-Return (Ctrl\-Shift\-j)
|
2011-05-08 15:15:24 +01:00
|
|
|
Confirm input. Prints the input text to stdout and exits, returning success.
|
2006-08-07 13:07:04 +01:00
|
|
|
.TP
|
2011-05-18 16:20:03 +01:00
|
|
|
.B Escape (Ctrl\-c)
|
2010-08-02 14:22:54 +01:00
|
|
|
Exit without selecting an item, returning failure.
|
2006-08-07 13:07:04 +01:00
|
|
|
.TP
|
2011-05-18 16:20:03 +01:00
|
|
|
.B Ctrl\-y
|
2010-07-31 14:56:27 +01:00
|
|
|
Paste the current X selection into the input field.
|
2006-08-04 08:35:27 +01:00
|
|
|
.SH SEE ALSO
|
2011-06-18 07:50:46 +01:00
|
|
|
.IR dwm (1),
|
|
|
|
.IR lsx (1)
|