Blame


1 f5e234d6 2018-05-18 omar.polo .Dd $Mdocdate$
2 f5e234d6 2018-05-18 omar.polo .Dt MYMENU 1
3 f5e234d6 2018-05-18 omar.polo .Os
4 f5e234d6 2018-05-18 omar.polo .Sh NAME
5 f5e234d6 2018-05-18 omar.polo .Nm mymenu
6 f5e234d6 2018-05-18 omar.polo .Nd simple menu for XOrg
7 f5e234d6 2018-05-18 omar.polo .Sh DESCRIPTION
8 f5e234d6 2018-05-18 omar.polo The
9 f5e234d6 2018-05-18 omar.polo .Nm
10 f5e234d6 2018-05-18 omar.polo utility a simple graphical menu for XOrg. It read the items from
11 f5e234d6 2018-05-18 omar.polo .Ic stdin
12 f5e234d6 2018-05-18 omar.polo and print the user selection to
13 f5e234d6 2018-05-18 omar.polo .Ic stdout
14 f5e234d6 2018-05-18 omar.polo on exit.
15 8d9debb1 2018-06-07 omar.polo .Sh OPTIONS
16 8d9debb1 2018-06-07 omar.polo .Bl -tag -width Ds
17 8d9debb1 2018-06-07 omar.polo .It Fl a
18 b500fe86 2018-06-07 omar.polo The first completion (if any) is always selected. This is like dmenu.
19 b500fe86 2018-06-07 omar.polo .It Fl h
20 b500fe86 2018-06-07 omar.polo Print a small usage message to stderr.
21 b500fe86 2018-06-07 omar.polo .It Fl v
22 b500fe86 2018-06-07 omar.polo Print version and exit.
23 8d9debb1 2018-06-07 omar.polo .El
24 f5e234d6 2018-05-18 omar.polo .Sh RESOURCES
25 f5e234d6 2018-05-18 omar.polo
26 8d9debb1 2018-06-07 omar.polo The appearance of the menu is defined through the \fBX Resource
27 8d9debb1 2018-06-07 omar.polo Database\fR.
28 f5e234d6 2018-05-18 omar.polo .Bl -tag -width Ds
29 f5e234d6 2018-05-18 omar.polo .It MyMenu.font
30 9e94fcbe 2018-05-22 omar.polo The font name to use. By default is set to "fixed" if compiled without
31 9e94fcbe 2018-05-22 omar.polo Xft(3) support, "monospace" otherwise. Without Xft(3) only bitmap font
32 9e94fcbe 2018-05-22 omar.polo are supported.
33 36a15a9f 2018-05-19 omar.polo .It MyMenu.layout
34 36a15a9f 2018-05-19 omar.polo The layout of the menu. The possible values are "horizontal" and
35 36a15a9f 2018-05-19 omar.polo "vertical", with the default being "horizontal". Every other value
36 36a15a9f 2018-05-19 omar.polo than "horizontal" is treated like "vertical", but this is kinda an
37 36a15a9f 2018-05-19 omar.polo implementation detail and not something to be relied on, since in the
38 8758854a 2018-05-20 omar.polo future other layout could be added as well.
39 8758854a 2018-05-20 omar.polo .It Mymenu.prompt
40 8758854a 2018-05-20 omar.polo A string that is rendered before the user input. Default to "$ ".
41 f5e234d6 2018-05-18 omar.polo .It MyMenu.width
42 f5e234d6 2018-05-18 omar.polo The width of the menu. If a numeric value is given (e.g. 400) is
43 f5e234d6 2018-05-18 omar.polo interpreted as pixel, if it ends with a percentage symbol `%'
44 f5e234d6 2018-05-18 omar.polo (e.g. 40%) the relative percentage will be computed (relative to the
45 8758854a 2018-05-20 omar.polo monitor width).
46 f5e234d6 2018-05-18 omar.polo .It MyMenu.height
47 f5e234d6 2018-05-18 omar.polo The height of the menu. Like MyMenu.width if a numeric value is given
48 f5e234d6 2018-05-18 omar.polo is interpreted as pixel, if it ends with a percentage symbol `%' the
49 8758854a 2018-05-20 omar.polo relative percentage will be computed (relative to the monitor height).
50 f5e234d6 2018-05-18 omar.polo .It MyMenu.x
51 f5e234d6 2018-05-18 omar.polo The X coordinate of the topmost left corner of the window. Much like
52 f5e234d6 2018-05-18 omar.polo MyMenu.height and MyMenu.width both a pixel dimension and percentage
53 f5e234d6 2018-05-18 omar.polo could be supplied. In addition to it, the special value "middle" could
54 f5e234d6 2018-05-18 omar.polo be used: in that case the window will be centered on the x axes.
55 f5e234d6 2018-05-18 omar.polo .It MyMenu.y
56 f5e234d6 2018-05-18 omar.polo The Y coordinate of the topmost left corner of the window. Like the X
57 e5186d6b 2018-05-26 omar.polo coordinate a pixel dimension, percentage dimension or the special
58 f5e234d6 2018-05-18 omar.polo value "middle" could be supplied.
59 e5186d6b 2018-05-26 omar.polo .It MyMenu.padding
60 e5186d6b 2018-05-26 omar.polo Change the padding. In the horizontal layout the padding is the space
61 e5186d6b 2018-05-26 omar.polo between the rectangle of the completion and the text as well as the
62 e5186d6b 2018-05-26 omar.polo space between the prompt and the first completion. In the horizontal
63 e5186d6b 2018-05-26 omar.polo layout the padding is the horizontal spacing between the window edge
64 e5186d6b 2018-05-26 omar.polo and the text as well as the space up and down the text within the
65 e5186d6b 2018-05-26 omar.polo completion. The default value is 10.
66 500ca6c1 2018-07-08 omar.polo .It MyMenu.border.size
67 500ca6c1 2018-07-08 omar.polo A list of number separated by spaces to specify the border of the
68 500ca6c1 2018-07-08 omar.polo window. The field is parsed like some CSS properties (i.e. padding),
69 500ca6c1 2018-07-08 omar.polo that is: if only one value is provided then it'll be used for all
70 500ca6c1 2018-07-08 omar.polo borders; if two value are given than the first will be used for the
71 500ca6c1 2018-07-08 omar.polo top and bottom border and the former for the left and right border;
72 500ca6c1 2018-07-08 omar.polo with three value the first is used for the top border, the second for
73 500ca6c1 2018-07-08 omar.polo the left and right border and the third for the bottom border. If four
74 500ca6c1 2018-07-08 omar.polo value are given, they'll be applied to the respective border
75 500ca6c1 2018-07-08 omar.polo clockwise. Other values will be ignored. The default value is 0.
76 500ca6c1 2018-07-08 omar.polo .It MyMenu.border.color
77 500ca6c1 2018-07-08 omar.polo A list of colors for the borders. This field is parsed like the
78 500ca6c1 2018-07-08 omar.polo MyMenu.border.size. The default value is black.
79 f5e234d6 2018-05-18 omar.polo .It MyMenu.prompt.background
80 8758854a 2018-05-20 omar.polo The background of the prompt.
81 f5e234d6 2018-05-18 omar.polo .It MyMenu.prompt.foreground
82 8758854a 2018-05-20 omar.polo The text color (foreground) of the prompt.
83 f5e234d6 2018-05-18 omar.polo .It MyMenu.completion.background
84 8758854a 2018-05-20 omar.polo The background of the completions.
85 f5e234d6 2018-05-18 omar.polo .It MyMenu.completion.foreground
86 8758854a 2018-05-20 omar.polo The text color of the completions.
87 f5e234d6 2018-05-18 omar.polo .It MyMenu.completion_highlighted.background
88 8758854a 2018-05-20 omar.polo The background of the selected completion.
89 f5e234d6 2018-05-18 omar.polo .It MyMenu.completion_highlighted.foreground
90 8758854a 2018-05-20 omar.polo The foreground of the selected completion.
91 f5e234d6 2018-05-18 omar.polo .El
92 f5e234d6 2018-05-18 omar.polo
93 f5e234d6 2018-05-18 omar.polo .Sh KEYS
94 bee0837c 2018-07-01 omar.polo This is the list of keybinding recognized by
95 bee0837c 2018-07-01 omar.polo .Li Nm Ns .
96 bee0837c 2018-07-01 omar.polo In the following examples, C-c means Control-c.
97 f5e234d6 2018-05-18 omar.polo .Bl -tag -width indent-two
98 f5e234d6 2018-05-18 omar.polo .It Esc
99 f5e234d6 2018-05-18 omar.polo Close the menu without selecting any entry
100 bee0837c 2018-07-01 omar.polo .It C-c
101 bee0837c 2018-07-01 omar.polo The same as Esc
102 f5e234d6 2018-05-18 omar.polo .It Enter
103 f5e234d6 2018-05-18 omar.polo Close the menu and print to stdout what the user typed
104 347d23da 2018-05-19 omar.polo .It C-m
105 347d23da 2018-05-19 omar.polo The same as Enter
106 f5e234d6 2018-05-18 omar.polo .It Tab
107 f5e234d6 2018-05-18 omar.polo Expand the prompt to the next possible completion
108 f5e234d6 2018-05-18 omar.polo .It Shift Tab
109 f5e234d6 2018-05-18 omar.polo Expand the prompt to the previous possible completion
110 8ecd98cc 2018-05-25 omar.polo .It C-n
111 8ecd98cc 2018-05-25 omar.polo The same as Tab
112 8ecd98cc 2018-05-25 omar.polo .It C-p
113 8ecd98cc 2018-05-25 omar.polo The same as Shift-Tab
114 f5e234d6 2018-05-18 omar.polo .It Backspace
115 f5e234d6 2018-05-18 omar.polo Delete the last character
116 347d23da 2018-05-19 omar.polo .It C-h
117 347d23da 2018-05-19 omar.polo The same as Backspace
118 347d23da 2018-05-19 omar.polo .It C-w
119 347d23da 2018-05-19 omar.polo Delete the last word
120 347d23da 2018-05-19 omar.polo .It C-u
121 347d23da 2018-05-19 omar.polo Delete the whole line
122 6254fed8 2018-07-06 omar.polo .It C-i
123 6254fed8 2018-07-06 omar.polo Toggle the ``first selected'' style. Sometimes, especially with the -a
124 6254fed8 2018-07-06 omar.polo option, could be handy to disable that behaviour. Let's say that
125 6254fed8 2018-07-06 omar.polo you've typed ``fire'' and the first completion is ``firefox'' but you
126 6254fed8 2018-07-06 omar.polo really want to choose ``fire''. While you can type some spaces, this
127 6254fed8 2018-07-06 omar.polo keybinding is a more elegant way to change, at runtime, the behaviour
128 6254fed8 2018-07-06 omar.polo of the first completion.
129 f5e234d6 2018-05-18 omar.polo .El
130 f5e234d6 2018-05-18 omar.polo
131 f5e234d6 2018-05-18 omar.polo .Sh BUGS
132 f5e234d6 2018-05-18 omar.polo .Bl -bullet
133 f5e234d6 2018-05-18 omar.polo .It
134 f5e234d6 2018-05-18 omar.polo If, instead of a numeric value, a not-valid number that terminates
135 f5e234d6 2018-05-18 omar.polo with the % sign is supplied, then the default value for that field
136 f5e234d6 2018-05-18 omar.polo will be treated as a percentage. Since this is a misuse of the
137 f5e234d6 2018-05-18 omar.polo resources this behavior isn't strictly considered a bug.
138 9e94fcbe 2018-05-22 omar.polo .It
139 9e94fcbe 2018-05-22 omar.polo C-w (delete last word) does not work well with multi-byte string. The
140 9e94fcbe 2018-05-22 omar.polo whole UTF-8 support is still kinda naïve and should be improved.
141 f5e234d6 2018-05-18 omar.polo .El
142 f5e234d6 2018-05-18 omar.polo
143 f5e234d6 2018-05-18 omar.polo .Sh EXIT STATUS
144 f5e234d6 2018-05-18 omar.polo
145 b500fe86 2018-06-07 omar.polo 0 when the user select an entry, 1 when the user press Esc, EX_USAGE
146 b500fe86 2018-06-07 omar.polo if used with wrong flags and EX_UNAVAILABLE if the connection to X
147 b500fe86 2018-06-07 omar.polo fails.
148 f5e234d6 2018-05-18 omar.polo
149 f5e234d6 2018-05-18 omar.polo .Sh SEE ALSO
150 f5e234d6 2018-05-18 omar.polo .Xr dmenu 1
151 f5e234d6 2018-05-18 omar.polo .Xr sysexits 3
152 f5e234d6 2018-05-18 omar.polo
153 f5e234d6 2018-05-18 omar.polo .Sh AUTHORS
154 f5e234d6 2018-05-18 omar.polo .An Omar Polo <omar.polo@europecom.net>
155 f5e234d6 2018-05-18 omar.polo