wmenu.1.scd (2963B)
1 WMENU(1) 2 3 # NAME 4 5 wmenu - dynamic menu for Wayland 6 7 # SYNOPSIS 8 9 *wmenu* [-biPv] \ 10 [-f _font_] \ 11 [-l _lines_] \ 12 [-o _output_] \ 13 [-p _prompt_] \ 14 [-N _color_] [-n _color_] \ 15 [-M _color_] [-m _color_] \ 16 [-S _color_] [-s _color_] 17 18 *wmenu-run* ... 19 20 # DESCRIPTION 21 22 *wmenu* is a dynamic menu for Wayland, which reads a list of newline-separated 23 items from stdin. When the user selects an item and presses Return, their choice 24 is printed to stdout and wmenu terminates. Entering text will narrow the items 25 to those matching the tokens in the input. 26 27 *wmenu-run* is a special invocation of wmenu which lists programs in the user's 28 $PATH and runs the result. 29 30 # OPTIONS 31 32 *-b* 33 wmenu appears at the bottom of the screen. 34 35 *-i* 36 wmenu matches menu items case insensitively. 37 38 *-P* 39 wmenu will not directly display the keyboard input, but instead replace it 40 with asterisks. 41 42 *-v* 43 prints version information to stdout, then exits. 44 45 *-f* _font_ 46 defines the font used. For more information, see 47 https://docs.gtk.org/Pango/type_func.FontDescription.from_string.html 48 49 *-l* _lines_ 50 wmenu lists items vertically, with the given number of lines. 51 52 *-o* _output_ 53 wmenu is displayed on the output with the given name. 54 55 *-p* _prompt_ 56 defines the prompt to be displayed to the left of the input field. 57 58 *-N* _RRGGBB[AA]_ 59 defines the normal background color. 60 61 *-n* _RRGGBB[AA]_ 62 defines the normal foreground color. 63 64 *-M* _RRGGBB[AA]_ 65 defines the prompt background color. 66 67 *-m* _RRGGBB[AA]_ 68 defines the prompt foreground color. 69 70 *-S* _RRGGBB[AA]_ 71 defines the selection background color. 72 73 *-s* _RRGGBB[AA]_ 74 defines the selection foreground color. 75 76 # USAGE 77 78 wmenu is completely controlled by the keyboard. Items are selected using the 79 arrow keys, page up, page down, home, and end. 80 81 *Tab* 82 Copy the selected item to the input field. 83 84 *Return* 85 Confirm selection. Prints the selected item to stdout and exits, returning 86 success. 87 88 *Ctrl-Return* 89 Confirm selection. Prints the selected item to stdout and continues. 90 91 *Shift-Return* 92 Confirm input. Prints the input text to stdout and exits, returning success. 93 94 *Escape* 95 Exit without selecting an item, returning failure. 96 97 *Ctrl-Left* 98 Move cursor to the start of the current word. 99 100 *Ctrl-Right* 101 Move cursor to the end of the current word. 102 103 |[ *C-a* 104 :< Home 105 106 |[ *C-b* 107 :< Left 108 109 |[ *C-c* 110 :< Escape 111 112 |[ *C-d* 113 :< Delete 114 115 |[ *C-e* 116 :< End 117 118 |[ *C-f* 119 :< Right 120 121 |[ *C-g* 122 :< Escape 123 124 |[ *C-[* 125 :< Escape 126 127 |[ *C-h* 128 :< Backspace 129 130 |[ *C-i* 131 :< Tab 132 133 |[ *C-j* 134 :< Return 135 136 |[ *C-J* 137 :< Shift-Return 138 139 |[ *C-k* 140 :< Delete line right 141 142 |[ *C-m* 143 :< Return 144 145 |[ *C-M* 146 :< Shift-Return 147 148 |[ *C-n* 149 :< Down 150 151 |[ *C-p* 152 :< Up 153 154 |[ *C-u* 155 :< Delete line left 156 157 |[ *C-w* 158 :< Delete word left 159 160 |[ *C-Y* 161 :< Paste from Wayland clipboard 162 163 |[ *M-b* 164 :< Move cursor to the start of the current word 165 166 |[ *M-f* 167 :< Move cursor to the end of the current word 168 169 |[ *M-g* 170 :< Home 171 172 |[ *M-G* 173 :< End 174 175 |[ *M-h* 176 :< Up 177 178 |[ *M-j* 179 :< Page down 180 181 |[ *M-k* 182 :< Page up 183 184 |[ *M-l* 185 :< Down 186