spmenu ====== ![image](/docs/preview.png) What is spmenu? =============== spmenu is a program for X11 that reads standard input and allows the user to select items separated by a newline. It is a fork of suckless's dmenu which is a good more minimal alternative to spmenu. Unlike dmenu and the many builds out there, spmenu has features like color support, Vim-like modes, image support, proper keybind configuration, and more. Most of these features can be disabled during compile time by editing `toggle.mk`. Usage ===== On runtime, spmenu reads from standard input (stdin). spmenu items are separated by a newline (`\n`). When (by default) Enter is pressed, the selected item will be piped to stdout. This allows things like `printf "Apple\nOrange\nPear\n" | spmenu`. This command will spawn an spmenu window with three items, 'Apple', 'Orange' and 'Pear'. This can be used in shell scripts to create interactive menus. On top of this, you can specify arguments to change the behavior of spmenu. See a list below for a list. Arguments ========= You may use long, descriptive arguments or the shorter arguments. `-mh, --lineheight height ` : Set spmenu line height to height `-mw, --min-width width ` : Set minimum width to width `-g, --columns grid ` : Set the number of grids to grid `-gc, --generate-cache ` : Generate image cache `-ngc, --no-generate-cache ` : Don't generate image cache `-mc, --max-cache size ` : Set max image cache size to size `-rw, --relative-width ` : Enable relative input width `-nrw, --no-relative-width ` : Disable relative input width `-f, --fast ` : Grabs keyboard before reading stdin `-F, --fuzzy ` : Enable fuzzy matching `-NF, --no-fuzzy ` : Disable fuzzy matching `-P, --password ` : Hide characters `-Ps, --password-symbol symbol ` : Set the password symbol to symbol `-p, --prompt text ` : Set spmenu prompt text to text `-ip, --indent ` : Indent items to prompt width `-nip, --no-indent ` : Don't indent items to prompt width `-a, --alpha ` : Enable alpha `-na, --no-alpha ` : Disable alpha `-tp, --allow-typing ` : Allow the user to type `-nt, --no-allow-typing ` : Don't allow typing, the user must select an option `-x, --x-position x offset ` : Offset spmenu x position by x offset `-y, --y-position y offset ` : Offset spmenu y position by y offset `-n, --preselect line ` : Preselect line in the list of items `-z, --width width ` : Width of the spmenu window `-nmt, --normal-mode-text text ` : Set normal mode text to text `-imt, --insert-mode-text text ` : Set insert mode text to text `-bw, --border-width width ` : Set width of the border to width . 0 will disable the border `-so, --sort ` : Sort matches `-nso, --no-sort ` : Don't sort matches `-pri, --priority pri1,pri2,pri3 ` : Specify a list of items that take priority `-s, --case-sensitive ` : Use case-sensitive matching `-ns, --case-insensitive ` : Use case-insensitive matching `-nm, --normal ` : Start spmenu in normal mode `-im, --insert ` : Start spmenu in insert mode `-t, --top ` : Position spmenu at the top of the screen `-b, --bottom ` : Position spmenu at the bottom of the screen `-c, --center ` : Position spmenu at the center of the screen `-hm, --hide-mode ` : Hide mode indicator `-hmc, --hide-match-count ` : Hide match count `-hla, --hide-left-arrow ` : Hide left arrow `-hra, --hide-right-arrow ` : Hide right arrow `-hpr, --hide-prompt ` : Hide prompt `-hpl, --hide-powerline ` : Hide powerline `-hc, --hide-cursor ` : Hide cursor `-hhl, --hide-highlighting ` : Hide highlight `-hi, --hide-image ` : Hide image `-sm, --show-mode ` : Show mode indicator `-smc, --show-match-count ` : Show match count `-sla, --show-left-arrow ` : Show left arrow `-sra, --show-right-arrow ` : Show right arrow `-spr, --show-prompt ` : Show prompt `-spl, --show-powerline ` : Show powerline `-sc, --show-cursor ` : Show cursor `-shl, --show-highlighting ` : Show highlight `-si, --show-image ` : Show image `-xrdb, --xrdb ` : Load .Xresources on runtime `-nxrdb, --no-xrdb ` : Don't load .Xresources on runtime `-m, --monitor monitor ` : Specify a monitor to run spmenu on `-w, --embed window id ` : Embed spmenu inside window id `-H, --hist-file hist file ` : Specify a path to save the history to `-ig, --image-gaps gaps ` : Set image gaps to gaps `-lp, --vertical-padding padding ` : Set the vertical padding `-hp, --horizontal-padding padding ` : Set the horizontal padding `-la, --left-arrow-symbol symbol ` : Set the left arrow to symbol `-ra, --right-arrow-symbol symbol ` : Set the right arrow to symbol `-is, --image-size size ` : Image size `-it, --image-top ` : Position the image at the top `-ib, --image-bottom ` : Position the image at the bottom `-ic, --image-center ` : Position the image in the center `-itc, --image-topcenter ` : Position the image in the top center `-wm, --managed, --x11-client ` : Spawn spmenu as a window manager controlled client/window. Useful for testing `-nwm, --unmanaged ` : Don't spawn spmenu as a window manager controlled client/window. Useful for testing `-lcfg, --load-config ` : Load spmenu configuration (~/.spmenu or ~/.config/spmenu/spmenurc) `-ncfg, --no-load-config ` : Don't load spmenu configuration (~/.spmenu or ~/.config/spmenu/spmenurc) `-v, --version ` : Print spmenu version to stdout `-fn, --font font` : Set the spmenu font to font `-nif, --normal-item-foreground color ` : Set the normal item foreground color `-nib, --normal-item-background color ` : Set the normal item background color `-sif, --selected-item-foreground color ` : Set the selected item foreground color `-sib, --selected-item-background color ` : Set the selected item background color `-npf, --normal-item-priority-foreground color ` : Set the normal item (high priority) foreground color `-npb, --normal-item-priority-background color ` : Set the normal item (high priority) background color `-spf, --selected-item-priority-foreground color ` : Set the selected item (high priority) foreground color `-spb, --selected-item-priority-background color ` : Set the selected item (high priority) background color `-pfg, --prompt-foreground color ` : Set the prompt foreground color `-pbg, --prompt-background color ` : Set the prompt background color `-ifg, --input-foreground color ` : Set input foreground color `-ibg, --input-background color ` : Set input background color `-mnbg, --menu-background color ` : Set the menu background color `-nhf, --normal-highlight-foreground color ` : Set the normal highlight foreground color `-nhb, --normal-highlight-background color ` : Set the normal highlight background color `-shf, --selected-highlight-foreground color ` : Set the selected highlight foreground color `-shb, --selected-highlight-background color ` : Set the selected highlight background color `-nfg, --number-foreground color ` : Set the foreground color for the match count `-nbg, --number-background color ` : Set the background color for the match count `-mfg, --mode-foreground color ` : Set the foreground color for the mode indicator `-mbg, --mode-background color ` : Set the background color for the mode indicator `-laf, --left-arrow-foreground color ` : Set the left arrow foreground color `-raf, --right-arrow-foreground color ` : Set the right arrow foreground color `-lab, --left-arrow-background color ` : Set the left arrow background color `-rab, --right-arrow-background color ` : Set the right arrow background color `-cc, --caret-foreground color ` : Set the caret color `-bc, --border-background color ` : Set the border color `-sgr0, --sgr0 color ` : Set the SGR 0 color `-sgr1, --sgr1 color ` : Set the SGR 1 color `-sgr2, --sgr2 color ` : Set the SGR 2 color `-sgr3, --sgr3 color ` : Set the SGR 3 color `-sgr4, --sgr4 color ` : Set the SGR 4 color `-sgr5, --sgr5 color ` : Set the SGR 5 color `-sgr6, --sgr6 color ` : Set the SGR 6 color `-sgr7, --sgr7 color ` : Set the SGR 7 color `-sgr8, --sgr8 color ` : Set the SGR 8 color `-sgr9, --sgr9 color ` : Set the SGR 9 color `-sgr10, --sgr10 color ` : Set the SGR 10 color `-sgr11, --sgr11 color ` : Set the SGR 11 color `-sgr12, --sgr12 color ` : Set the SGR 12 color `-sgr13, --sgr13 color ` : Set the SGR 13 color `-sgr14, --sgr14 color ` : Set the SGR 14 color `-sgr15, --sgr15 color ` : Set the SGR 15 color dmenu compatibility can be achieved using these arguments: `-S` : Don't sort matches `-i` : Use case-insensitive matching `-nb color` : Set the normal background color `-nf color` : Set the normal foreground color `-sb color` : Set the selected background color `-sf color` : Set the selected foreground color Keybinds ======== See `keybinds.h` for a list. Modes ===== One of the features that separate spmenu from dmenu is spmenu's different modes. As of version 0.2, there are two modes. Normal mode and Insert mode. These modes are of course similar to Vim. Normal mode is the mode spmenu starts in unless a mode argument is specified. In normal mode, all keys perform some action, but you cannot type any actual text to filter items. This mode is used for navigation, as well as quickly selecting an item. Insert mode is entered through (by default) pressing `i` in normal mode. In this mode, most keybinds do nothing. When you are in insert mode, you filter items by typing text into the field. Once you're done with insert mode, you can press Escape to enter normal mode again. -p option ========= spmenu has a -p option, which stands for prompt. It allows you to specify text to display next to the item list. It is displayed on the left side of the spmenu window. It should be noted that the prompt is purely visual though. Images ====== spmenu supports drawing images. This image is placed on the left side of the menu window. To use an image, pipe `IMG:/path/to/image` to spmenu. If you want you can specify arguments like usual. Note that you should add a Tab (`\t`) character after the path to the image file. Otherwise the text after will be interpreted as part of the filename and the image will not be drawn. Any text after the Tab character will be interpreted as a regular item. In practice, drawing an image might look like this: `printf "IMG:/path/to/image\tLook at that image, isn't it awesome?\n" | spmenu` There are also a few image related arguments, such as: `-is`, `-ig`, `-it`, `-ib`, `-ic`, `-itc` and `-gc`. Colored text ============ spmenu supports colored text through SGR sequences. This is the same colors that you might already be using in your shell scripts. This means you can pipe practically any colored shell script straight into spmenu, no need to filter the output or anything. For 256 color support to work, you must add to the array. See `libs/color.h` if you want this. See 'SGR sequences' for more information. SGR sequences ============= A basic supported SGR sequence looks like this: `\033[X;YZm` Here, X specifies if you want normal or bright colors. Y specifies if you want background or foreground. Z specifies the color number. Foreground colors: `30` through `37` Background colors: `40` through `47` Reset: `0` NOTE: `;` is a separator, and in this example it separates the color number and normal/bright. \033 may also be written as `^]` or simply `ESC`. spmenu supports most color sequences, although not true color by default (unless -sgr arguments are used). There are a few arguments, you can override SGR colors on-the-fly using the `-sgrX` arguments. See 'Arguments' for more information. Configuration ============= spmenu has .Xresources (xrdb) support built in. It reads the xrdb (.Xresources database) on runtime. You may disable it by passing -nxrdb, or enable it by padding -xrdb. spmenu loads `~/.config/spmenu/spmenurc` or alternatively if you're old fashioned, `~/.spmenurc`. This requires that `xrdb` is available on your operating system. You can also use wildcards (such as `*`) to achieve a global colorscheme. Programs like `pywal` do this. License ======= spmenu is licensed under the MIT license. See the included LICENSE file for more information.