From 88a1d1cbf7f077c6f3ed712939adc83cfe96eaf1 Mon Sep 17 00:00:00 2001 From: Dave Davenport Date: Tue, 5 Apr 2022 22:21:13 +0200 Subject: [Doc] Tweak rofi-theme manpage. --- doc/rofi-dmenu.5 | 119 +++++------ doc/rofi-keys.5 | 339 ++++++++++++++++---------------- doc/rofi-script.5 | 51 ++--- doc/rofi-sensible-terminal.1 | 21 +- doc/rofi-theme-selector.1 | 25 +-- doc/rofi-theme.5 | 457 +++++++++++++++++++++---------------------- doc/rofi-theme.5.markdown | 58 +++--- doc/rofi.1 | 441 ++++++++++++++++++++--------------------- 8 files changed, 754 insertions(+), 757 deletions(-) diff --git a/doc/rofi-dmenu.5 b/doc/rofi-dmenu.5 index 9a2123aa..f361af08 100644 --- a/doc/rofi-dmenu.5 +++ b/doc/rofi-dmenu.5 @@ -1,7 +1,8 @@ -.TH ROFI\-DMENU 5 rofi\-dmenu +.nh +.TH ROFI-DMENU 5 rofi-dmenu .SH NAME .PP -\fBrofi dmenu mode\fP \- Rofi dmenu emulation +\fBrofi dmenu mode\fP - Rofi dmenu emulation .SH DESCRIPTION .PP @@ -14,8 +15,8 @@ The website for \fB\fCdmenu\fR can be found here .PP \fBrofi\fP does not aim to be 100% compatible with \fB\fCdmenu\fR\&. There are simply too many flavors of \fB\fCdmenu\fR\&. -The idea is that the basic usage command\-line flags are obeyed, theme\-related flags are not. -Besides, \fBrofi\fP offers some extended features (like multi\-select, highlighting, message bar, extra key bindings). +The idea is that the basic usage command-line flags are obeyed, theme-related flags are not. +Besides, \fBrofi\fP offers some extended features (like multi-select, highlighting, message bar, extra key bindings). .SH BASIC CONCEPT .PP @@ -28,27 +29,27 @@ By default separation of rows is done on new lines, making it easy to pipe the o .SH USAGE .PP -By launching \fBrofi\fP with the \fB\fC\-dmenu\fR flag it will go into dmenu emulation mode. +By launching \fBrofi\fP with the \fB\fC-dmenu\fR flag it will go into dmenu emulation mode. .PP .RS .nf -ls | rofi \-dmenu +ls | rofi -dmenu .fi .RE -.SS DMENU DROP\-IN REPLACEMENT +.SS DMENU DROP-IN REPLACEMENT .PP If \fB\fCargv[0]\fR (calling command) is dmenu, \fBrofi\fP will start in dmenu mode. -This way, it can be used as a drop\-in replacement for dmenu. Just copy or symlink \fBrofi\fP to dmenu in \fB\fC$PATH\fR\&. +This way, it can be used as a drop-in replacement for dmenu. Just copy or symlink \fBrofi\fP to dmenu in \fB\fC$PATH\fR\&. .PP .RS .nf -ln \-s /usr/bin/rofi /usr/bin/dmenu +ln -s /usr/bin/rofi /usr/bin/dmenu .fi .RE @@ -56,15 +57,15 @@ ln \-s /usr/bin/rofi /usr/bin/dmenu .SS DMENU VS SCRIPT MODE .PP Script mode is used to extend \fBrofi\fP, dmenu mode is used to extend a script. -The two do share much of the same input format. Please see the \fBrofi\-script(5)\fP manpage for more information. +The two do share much of the same input format. Please see the \fBrofi-script(5)\fP manpage for more information. .SS DMENU SPECIFIC COMMANDLINE FLAGS .PP -A lot of these options can also be modified by the script using special input. See the \fBrofi\-script(5)\fP manpage +A lot of these options can also be modified by the script using special input. See the \fBrofi-script(5)\fP manpage for more information about this syntax. .PP -\fB\fC\-sep\fR \fIseparator\fP +\fB\fC-sep\fR \fIseparator\fP .PP Separator for \fB\fCdmenu\fR\&. Example: To show a list of 'a' to 'e' with '|' as a separator: @@ -73,13 +74,13 @@ Separator for \fB\fCdmenu\fR\&. Example: To show a list of 'a' to 'e' with '|' a .RS .nf -echo "a|b|c|d|e" | rofi \-sep '|' \-dmenu +echo "a|b|c|d|e" | rofi -sep '|' -dmenu .fi .RE .PP -\fB\fC\-p\fR \fIprompt\fP +\fB\fC-p\fR \fIprompt\fP .PP Specify the prompt to show in \fB\fCdmenu\fR mode. For example, select 'monkey', a,b,c,d, or e. @@ -88,7 +89,7 @@ Specify the prompt to show in \fB\fCdmenu\fR mode. For example, select 'monkey', .RS .nf -echo "a|b|c|d|e" | rofi \-sep '|' \-dmenu \-p "monkey" +echo "a|b|c|d|e" | rofi -sep '|' -dmenu -p "monkey" .fi .RE @@ -97,7 +98,7 @@ echo "a|b|c|d|e" | rofi \-sep '|' \-dmenu \-p "monkey" Default: \fIdmenu\fP .PP -\fB\fC\-l\fR \fInumber of lines to show\fP +\fB\fC-l\fR \fInumber of lines to show\fP .PP Maximum number of lines the menu may show before scrolling. @@ -106,7 +107,7 @@ Maximum number of lines the menu may show before scrolling. .RS .nf -rofi \-dmenu \-l 25 +rofi -dmenu -l 25 .fi .RE @@ -115,39 +116,39 @@ rofi \-dmenu \-l 25 Default: \fI15\fP .PP -\fB\fC\-i\fR +\fB\fC-i\fR .PP -Makes \fB\fCdmenu\fR searches case\-insensitive +Makes \fB\fCdmenu\fR searches case-insensitive .PP -\fB\fC\-a\fR \fIX\fP +\fB\fC-a\fR \fIX\fP .PP -Active row, mark \fIX\fP as active. Where \fIX\fP is a comma\-separated list of python(1)\-style indices and ranges, e.g. indices start at 0, \-1 refers to the last row with \-2 preceding it, ranges are left\-open and right\-close, and so on. You can specify: +Active row, mark \fIX\fP as active. Where \fIX\fP is a comma-separated list of python(1)-style indices and ranges, e.g. indices start at 0, -1 refers to the last row with -2 preceding it, ranges are left-open and right-close, and so on. You can specify: .RS .IP \(bu 2 A single row: '5' .IP \(bu 2 -A range of (last 3) rows: '\-3:' +A range of (last 3) rows: '-3:' .IP \(bu 2 -4 rows starting from row 7: '7:11' (or in legacy notation: '7\-10') +4 rows starting from row 7: '7:11' (or in legacy notation: '7-10') .IP \(bu 2 -A set of rows: '2,0,\-9' +A set of rows: '2,0,-9' .IP \(bu 2 -Or any combination: '5,\-3:,7:11,2,0,\-9' +Or any combination: '5,-3:,7:11,2,0,-9' .RE .PP -\fB\fC\-u\fR \fIX\fP +\fB\fC-u\fR \fIX\fP .PP -Urgent row, mark \fIX\fP as urgent. See \fB\fC\-a\fR option for details. +Urgent row, mark \fIX\fP as urgent. See \fB\fC-a\fR option for details. .PP -\fB\fC\-only\-match\fR +\fB\fC-only-match\fR .PP Only return a selected item, do not allow custom entry. @@ -155,14 +156,14 @@ This mode always returns an entry. It will not return if no matching entry is selected. .PP -\fB\fC\-no\-custom\fR +\fB\fC-no-custom\fR .PP Only return a selected item, do not allow custom entry. This mode returns directly when no entries given. .PP -\fB\fC\-format\fR \fIformat\fP +\fB\fC-format\fR \fIformat\fP .PP Allows the output of dmenu to be customized (N is the total number of input entries): @@ -171,9 +172,9 @@ Allows the output of dmenu to be customized (N is the total number of input entr .IP \(bu 2 \&'s' selected string .IP \(bu 2 -\&'i' index (0 \-\& (N\-\&1)) +\&'i' index (0 - (N-1)) .IP \(bu 2 -\&'d' index (1 \-\& N) +\&'d' index (1 - N) .IP \(bu 2 \&'q' quote string .IP \(bu 2 @@ -189,13 +190,13 @@ Allows the output of dmenu to be customized (N is the total number of input entr Default: 's' .PP -\fB\fC\-select\fR \fIstring\fP +\fB\fC-select\fR \fIstring\fP .PP Select first line that matches the given string .PP -\fB\fC\-mesg\fR \fIstring\fP +\fB\fC-mesg\fR \fIstring\fP .PP Add a message line below the filter entry box. Supports Pango markup. @@ -203,27 +204,27 @@ For more information on supported markup, see here \[la]https://docs.gtk.org/Pango/pango_markup.html\[ra] .PP -\fB\fC\-dump\fR +\fB\fC-dump\fR .PP Dump the filtered list to stdout and quit. This can be used to get the list as \fBrofi\fP would filter it. -Use together with \fB\fC\-filter\fR command. +Use together with \fB\fC-filter\fR command. .PP -\fB\fC\-input\fR \fIfile\fP +\fB\fC-input\fR \fIfile\fP .PP Reads from \fIfile\fP instead of stdin. .PP -\fB\fC\-password\fR +\fB\fC-password\fR .PP Hide the input text. This should not be considered secure! .PP -\fB\fC\-markup\-rows\fR +\fB\fC-markup-rows\fR .PP Tell \fBrofi\fP that DMenu input is Pango markup encoded, and should be rendered. @@ -231,23 +232,23 @@ See here \[la]https://developer.gnome.org/pygtk/stable/pango-markup-language.html\[ra] for details about Pango markup. .PP -\fB\fC\-multi\-select\fR +\fB\fC-multi-select\fR .PP Allow multiple lines to be selected. Adds a small selection indicator to the left of each entry. .PP -\fB\fC\-sync\fR +\fB\fC-sync\fR .PP Force \fBrofi\fP mode to first read all data from stdin before showing the selection window. This is original dmenu behavior. .PP Note: the default asynchronous mode will also be automatically disabled if used with conflicting options, -such as \fB\fC\-dump\fR, \fB\fC\-only\-match\fR or \fB\fC\-auto\-select\fR\&. +such as \fB\fC-dump\fR, \fB\fC-only-match\fR or \fB\fC-auto-select\fR\&. .PP -\fB\fC\-async\-pre\-read\fR \fInumber\fP +\fB\fC-async-pre-read\fR \fInumber\fP .PP Reads the first \fInumber\fP entries blocking, then switches to async mode. @@ -257,31 +258,31 @@ This makes it feel more 'snappy'. \fIdefault\fP: 25 .PP -\fB\fC\-window\-title\fR \fItitle\fP +\fB\fC-window-title\fR \fItitle\fP .PP -Set name used for the window title. Will be shown as Rofi \- \fItitle\fP +Set name used for the window title. Will be shown as Rofi - \fItitle\fP .PP -\fB\fC\-w\fR \fIwindowid\fP +\fB\fC-w\fR \fIwindowid\fP .PP Position \fBrofi\fP over the window with the given X11 window ID. .PP -\fB\fC\-keep\-right\fR +\fB\fC-keep-right\fR .PP Set ellipsize mode to start. So, the end of the string is visible. .PP -\fB\fC\-display\-columns\fR +\fB\fC-display-columns\fR .PP A comma seperated list of columns to show. .PP -\fB\fC\-display\-column\-separator\fR +\fB\fC-display-column-separator\fR .PP The column separator. This is a regex. @@ -296,30 +297,30 @@ The column separator. This is a regex. .IP \(bu 2 \fB1\fP: User cancelled the selection. .IP \(bu 2 -\fB10\-28\fP: Row accepted by custom keybinding. +\fB10-28\fP: Row accepted by custom keybinding. .RE .SH SEE ALSO .PP -rofi(1), rofi\-sensible\-terminal(1), dmenu(1), rofi\-theme(5), rofi\-script(5), rofi\-theme\-selector(1) +rofi(1), rofi-sensible-terminal(1), dmenu(1), rofi-theme(5), rofi-script(5), rofi-theme-selector(1) .SH AUTHOR .PP -Qball Cow -\[la]qball@gmpclient.org\[ra] +Qball Cow qball@gmpclient.org +\[la]mailto:qball@gmpclient.org\[ra] .PP -Rasmus Steinke -\[la]rasi@xssn.at\[ra] +Rasmus Steinke rasi@xssn.at +\[la]mailto:rasi@xssn.at\[ra] .PP -Morgane Glidic -\[la]sardemff7+rofi@sardemff7.net\[ra] +Morgane Glidic sardemff7+rofi@sardemff7.net +\[la]mailto:sardemff7+rofi@sardemff7.net\[ra] .PP -Original code based on work by: Sean Pringle -\[la]sean.pringle@gmail.com\[ra] +Original code based on work by: Sean Pringle sean.pringle@gmail.com +\[la]mailto:sean.pringle@gmail.com\[ra] .PP For a full list of authors, check the AUTHORS file. diff --git a/doc/rofi-keys.5 b/doc/rofi-keys.5 index ee0cb1df..8a20e17c 100644 --- a/doc/rofi-keys.5 +++ b/doc/rofi-keys.5 @@ -1,7 +1,8 @@ -.TH ROFI\-KEYS 5 rofi\-keys +.nh +.TH ROFI-KEYS 5 rofi-keys .SH NAME .PP -\fBrofi keys\fP \- Rofi Key and Mouse bindings +\fBrofi keys\fP - Rofi Key and Mouse bindings .SH DESCRIPTION .PP @@ -9,13 +10,13 @@ .SH Setting binding .PP -Bindings can be done on the commandline (\-{bindingname}): +Bindings can be done on the commandline (-{bindingname}): .PP .RS .nf -rofi \-show run \-kb\-accept\-entry 'Control+Shift+space' +rofi -show run -kb-accept-entry 'Control+Shift+space' .fi .RE @@ -28,7 +29,7 @@ or via the configuration file: .nf configuration { - kb\-accept\-entry: "Control+Shift+space"; + kb-accept-entry: "Control+Shift+space"; } .fi @@ -42,7 +43,7 @@ The key can be set by its name (see above) or its keycode: .nf configuration { - kb\-accept\-entry: "Control+Shift+[65]"; + kb-accept-entry: "Control+Shift+[65]"; } .fi @@ -59,7 +60,7 @@ Multiple keys can be specified for an action as a comma separated list: .nf configuration { - kb\-accept\-entry: "Control+Shift+space,Return"; + kb-accept-entry: "Control+Shift+space,Return"; } .fi @@ -74,566 +75,566 @@ prepend the binding with \fB\fC!\fR: .nf configuration { - kb\-accept\-entry: "!Control+Shift+space,Return"; + kb-accept-entry: "!Control+Shift+space,Return"; } .fi .RE .SH Keyboard Bindings -.SS \fBkb\-primary\-paste\fP: +.SS \fBkb-primary-paste\fP: .PP Paste primary selection .PP -\fBDefault\fP: Control+V,Shift+Insert +\fBDefault\fP: Control+V,Shift+Insert -.SS \fBkb\-secondary\-paste\fP +.SS \fBkb-secondary-paste\fP .PP Paste clipboard .PP -\fBDefault\fP: Control+v,Insert +\fBDefault\fP: Control+v,Insert -.SS \fBkb\-clear\-line\fP +.SS \fBkb-clear-line\fP .PP Clear input line .PP -\fBDefault\fP: Control+w +\fBDefault\fP: Control+w -.SS \fBkb\-move\-front\fP +.SS \fBkb-move-front\fP .PP Beginning of line .PP -\fBDefault\fP: Control+a +\fBDefault\fP: Control+a -.SS \fBkb\-move\-end\fP +.SS \fBkb-move-end\fP .PP End of line .PP -\fBDefault\fP: Control+e +\fBDefault\fP: Control+e -.SS \fBkb\-move\-word\-back\fP +.SS \fBkb-move-word-back\fP .PP Move back one word .PP -\fBDefault\fP: Alt+b,Control+Left +\fBDefault\fP: Alt+b,Control+Left -.SS \fBkb\-move\-word\-forward\fP +.SS \fBkb-move-word-forward\fP .PP Move forward one word .PP -\fBDefault\fP: Alt+f,Control+Right +\fBDefault\fP: Alt+f,Control+Right -.SS \fBkb\-move\-char\-back\fP +.SS \fBkb-move-char-back\fP .PP Move back one char .PP -\fBDefault\fP: Left,Control+b +\fBDefault\fP: Left,Control+b -.SS \fBkb\-move\-char\-forward\fP +.SS \fBkb-move-char-forward\fP .PP Move forward one char .PP -\fBDefault\fP: Right,Control+f +\fBDefault\fP: Right,Control+f -.SS \fBkb\-remove\-word\-back\fP +.SS \fBkb-remove-word-back\fP .PP Delete previous word .PP -\fBDefault\fP: Control+Alt+h,Control+BackSpace +\fBDefault\fP: Control+Alt+h,Control+BackSpace -.SS \fBkb\-remove\-word\-forward\fP +.SS \fBkb-remove-word-forward\fP .PP Delete next word .PP -\fBDefault\fP: Control+Alt+d +\fBDefault\fP: Control+Alt+d -.SS \fBkb\-remove\-char\-forward\fP +.SS \fBkb-remove-char-forward\fP .PP Delete next char .PP -\fBDefault\fP: Delete,Control+d +\fBDefault\fP: Delete,Control+d -.SS \fBkb\-remove\-char\-back\fP +.SS \fBkb-remove-char-back\fP .PP Delete previous char .PP -\fBDefault\fP: BackSpace,Shift+BackSpace,Control+h +\fBDefault\fP: BackSpace,Shift+BackSpace,Control+h -.SS \fBkb\-remove\-to\-eol\fP +.SS \fBkb-remove-to-eol\fP .PP Delete till the end of line .PP -\fBDefault\fP: Control+k +\fBDefault\fP: Control+k -.SS \fBkb\-remove\-to\-sol\fP +.SS \fBkb-remove-to-sol\fP .PP Delete till the start of line .PP -\fBDefault\fP: Control+u +\fBDefault\fP: Control+u -.SS \fBkb\-accept\-entry\fP +.SS \fBkb-accept-entry\fP .PP Accept entry .PP -\fBDefault\fP: Control+j,Control+m,Return,KP\_Enter +\fBDefault\fP: Control+j,Control+m,Return,KP_Enter -.SS \fBkb\-accept\-custom\fP +.SS \fBkb-accept-custom\fP .PP Use entered text as command (in ssh/run modes) .PP -\fBDefault\fP: Control+Return +\fBDefault\fP: Control+Return -.SS \fBkb\-accept\-custom\-alt\fP +.SS \fBkb-accept-custom-alt\fP .PP Use entered text as command (in ssh/run modes) .PP -\fBDefault\fP: Control+Shift+Return +\fBDefault\fP: Control+Shift+Return -.SS \fBkb\-accept\-alt\fP +.SS \fBkb-accept-alt\fP .PP Use alternate accept command. .PP -\fBDefault\fP: Shift+Return +\fBDefault\fP: Shift+Return -.SS \fBkb\-delete\-entry\fP +.SS \fBkb-delete-entry\fP .PP Delete entry from history .PP -\fBDefault\fP: Shift+Delete +\fBDefault\fP: Shift+Delete -.SS \fBkb\-mode\-next\fP +.SS \fBkb-mode-next\fP .PP Switch to the next mode. .PP -\fBDefault\fP: Shift+Right,Control+Tab +\fBDefault\fP: Shift+Right,Control+Tab -.SS \fBkb\-mode\-previous\fP +.SS \fBkb-mode-previous\fP .PP Switch to the previous mode. .PP -\fBDefault\fP: Shift+Left,Control+ISO\_Left\_Tab +\fBDefault\fP: Shift+Left,Control+ISO_Left_Tab -.SS \fBkb\-mode\-complete\fP +.SS \fBkb-mode-complete\fP .PP Start completion for mode. .PP -\fBDefault\fP: Control+l +\fBDefault\fP: Control+l -.SS \fBkb\-row\-left\fP +.SS \fBkb-row-left\fP .PP Go to the previous column .PP -\fBDefault\fP: Control+Page\_Up +\fBDefault\fP: Control+Page_Up -.SS \fBkb\-row\-right\fP +.SS \fBkb-row-right\fP .PP Go to the next column .PP -\fBDefault\fP: Control+Page\_Down +\fBDefault\fP: Control+Page_Down -.SS \fBkb\-row\-up\fP +.SS \fBkb-row-up\fP .PP Select previous entry .PP -\fBDefault\fP: Up,Control+p +\fBDefault\fP: Up,Control+p -.SS \fBkb\-row\-down\fP +.SS \fBkb-row-down\fP .PP Select next entry .PP -\fBDefault\fP: Down,Control+n +\fBDefault\fP: Down,Control+n -.SS \fBkb\-row\-tab\fP +.SS \fBkb-row-tab\fP .PP Go to next row, if one left, accept it, if no left next mode. .PP -\fBDefault\fP: +\fBDefault\fP: -.SS \fBkb\-element\-next\fP +.SS \fBkb-element-next\fP .PP Go to next row. .PP -\fBDefault\fP: Tab +\fBDefault\fP: Tab -.SS \fBkb\-element\-prev\fP +.SS \fBkb-element-prev\fP .PP Go to previous row. .PP -\fBDefault\fP: ISO\_Left\_Tab +\fBDefault\fP: ISO_Left_Tab -.SS \fBkb\-page\-prev\fP +.SS \fBkb-page-prev\fP .PP Go to the previous page .PP -\fBDefault\fP: Page\_Up +\fBDefault\fP: Page_Up -.SS \fBkb\-page\-next\fP +.SS \fBkb-page-next\fP .PP Go to the next page .PP -\fBDefault\fP: Page\_Down +\fBDefault\fP: Page_Down -.SS \fBkb\-row\-first\fP +.SS \fBkb-row-first\fP .PP Go to the first entry .PP -\fBDefault\fP: Home,KP\_Home +\fBDefault\fP: Home,KP_Home -.SS \fBkb\-row\-last\fP +.SS \fBkb-row-last\fP .PP Go to the last entry .PP -\fBDefault\fP: End,KP\_End +\fBDefault\fP: End,KP_End -.SS \fBkb\-row\-select\fP +.SS \fBkb-row-select\fP .PP Set selected item as input text .PP -\fBDefault\fP: Control+space +\fBDefault\fP: Control+space -.SS \fBkb\-screenshot\fP +.SS \fBkb-screenshot\fP .PP Take a screenshot of the rofi window .PP -\fBDefault\fP: Alt+S +\fBDefault\fP: Alt+S -.SS \fBkb\-ellipsize\fP +.SS \fBkb-ellipsize\fP .PP Toggle between ellipsize modes for displayed data .PP -\fBDefault\fP: Alt+period +\fBDefault\fP: Alt+period -.SS \fBkb\-toggle\-case\-sensitivity\fP +.SS \fBkb-toggle-case-sensitivity\fP .PP Toggle case sensitivity .PP -\fBDefault\fP: grave,dead\_grave +\fBDefault\fP: grave,dead_grave -.SS \fBkb\-toggle\-sort\fP +.SS \fBkb-toggle-sort\fP .PP Toggle sort .PP -\fBDefault\fP: Alt+grave +\fBDefault\fP: Alt+grave -.SS \fBkb\-cancel\fP +.SS \fBkb-cancel\fP .PP Quit rofi .PP -\fBDefault\fP: Escape,Control+g,Control+bracketleft +\fBDefault\fP: Escape,Control+g,Control+bracketleft -.SS \fBkb\-custom\-1\fP +.SS \fBkb-custom-1\fP .PP Custom keybinding 1 .PP -\fBDefault\fP: Alt+1 +\fBDefault\fP: Alt+1 -.SS \fBkb\-custom\-2\fP +.SS \fBkb-custom-2\fP .PP Custom keybinding 2 .PP -\fBDefault\fP: Alt+2 +\fBDefault\fP: Alt+2 -.SS \fBkb\-custom\-3\fP +.SS \fBkb-custom-3\fP .PP Custom keybinding 3 .PP -\fBDefault\fP: Alt+3 +\fBDefault\fP: Alt+3 -.SS \fBkb\-custom\-4\fP +.SS \fBkb-custom-4\fP .PP Custom keybinding 4 .PP -\fBDefault\fP: Alt+4 +\fBDefault\fP: Alt+4 -.SS \fBkb\-custom\-5\fP +.SS \fBkb-custom-5\fP .PP Custom Keybinding 5 .PP -\fBDefault\fP: Alt+5 +\fBDefault\fP: Alt+5 -.SS \fBkb\-custom\-6\fP +.SS \fBkb-custom-6\fP .PP Custom keybinding 6 .PP -\fBDefault\fP: Alt+6 +\fBDefault\fP: Alt+6 -.SS \fBkb\-custom\-7\fP +.SS \fBkb-custom-7\fP .PP Custom Keybinding 7 .PP -\fBDefault\fP: Alt+7 +\fBDefault\fP: Alt+7 -.SS \fBkb\-custom\-8\fP +.SS \fBkb-custom-8\fP .PP Custom keybinding 8 .PP -\fBDefault\fP: Alt+8 +\fBDefault\fP: Alt+8 -.SS \fBkb\-custom\-9\fP +.SS \fBkb-custom-9\fP .PP Custom keybinding 9 .PP -\fBDefault\fP: Alt+9 +\fBDefault\fP: Alt+9 -.SS \fBkb\-custom\-10\fP +.SS \fBkb-custom-10\fP .PP Custom keybinding 10 .PP -\fBDefault\fP: Alt+0 +\fBDefault\fP: Alt+0 -.SS \fBkb\-custom\-11\fP +.SS \fBkb-custom-11\fP .PP Custom keybinding 11 .PP -\fBDefault\fP: Alt+exclam +\fBDefault\fP: Alt+exclam -.SS \fBkb\-custom\-12\fP +.SS \fBkb-custom-12\fP .PP Custom keybinding 12 .PP -\fBDefault\fP: Alt+at +\fBDefault\fP: Alt+at -.SS \fBkb\-custom\-13\fP +.SS \fBkb-custom-13\fP .PP Custom keybinding 13 .PP -\fBDefault\fP: Alt+numbersign +\fBDefault\fP: Alt+numbersign -.SS \fBkb\-custom\-14\fP +.SS \fBkb-custom-14\fP .PP Custom keybinding 14 .PP -\fBDefault\fP: Alt+dollar +\fBDefault\fP: Alt+dollar -.SS \fBkb\-custom\-15\fP +.SS \fBkb-custom-15\fP .PP Custom keybinding 15 .PP -\fBDefault\fP: Alt+percent +\fBDefault\fP: Alt+percent -.SS \fBkb\-custom\-16\fP +.SS \fBkb-custom-16\fP .PP Custom keybinding 16 .PP -\fBDefault\fP: Alt+dead\_circumflex +\fBDefault\fP: Alt+dead_circumflex -.SS \fBkb\-custom\-17\fP +.SS \fBkb-custom-17\fP .PP Custom keybinding 17 .PP -\fBDefault\fP: Alt+ampersand +\fBDefault\fP: Alt+ampersand -.SS \fBkb\-custom\-18\fP +.SS \fBkb-custom-18\fP .PP Custom keybinding 18 .PP -\fBDefault\fP: Alt+asterisk +\fBDefault\fP: Alt+asterisk -.SS \fBkb\-custom\-19\fP +.SS \fBkb-custom-19\fP .PP Custom Keybinding 19 .PP -\fBDefault\fP: Alt+parenleft +\fBDefault\fP: Alt+parenleft -.SS \fBkb\-select\-1\fP +.SS \fBkb-select-1\fP .PP Select row 1 .PP -\fBDefault\fP: Super+1 +\fBDefault\fP: Super+1 -.SS \fBkb\-select\-2\fP +.SS \fBkb-select-2\fP .PP Select row 2 .PP -\fBDefault\fP: Super+2 +\fBDefault\fP: Super+2 -.SS \fBkb\-select\-3\fP +.SS \fBkb-select-3\fP .PP Select row 3 .PP -\fBDefault\fP: Super+3 +\fBDefault\fP: Super+3 -.SS \fBkb\-select\-4\fP +.SS \fBkb-select-4\fP .PP Select row 4 .PP -\fBDefault\fP: Super+4 +\fBDefault\fP: Super+4 -.SS \fBkb\-select\-5\fP +.SS \fBkb-select-5\fP .PP Select row 5 .PP -\fBDefault\fP: Super+5 +\fBDefault\fP: Super+5 -.SS \fBkb\-select\-6\fP +.SS \fBkb-select-6\fP .PP Select row 6 .PP -\fBDefault\fP: Super+6 +\fBDefault\fP: Super+6 -.SS \fBkb\-select\-7\fP +.SS \fBkb-select-7\fP .PP Select row 7 .PP -\fBDefault\fP: Super+7 +\fBDefault\fP: Super+7 -.SS \fBkb\-select\-8\fP +.SS \fBkb-select-8\fP .PP Select row 8 .PP -\fBDefault\fP: Super+8 +\fBDefault\fP: Super+8 -.SS \fBkb\-select\-9\fP +.SS \fBkb-select-9\fP .PP Select row 9 .PP -\fBDefault\fP: Super+9 +\fBDefault\fP: Super+9 -.SS \fBkb\-select\-10\fP +.SS \fBkb-select-10\fP .PP Select row 10 .PP -\fBDefault\fP: Super+0 +\fBDefault\fP: Super+0 .SH Mouse Bindings -.SS \fBml\-row\-left\fP +.SS \fBml-row-left\fP .PP Go to the previous column .PP -\fBDefault\fP: ScrollLeft +\fBDefault\fP: ScrollLeft -.SS \fBml\-row\-right\fP +.SS \fBml-row-right\fP .PP Go to the next column .PP -\fBDefault\fP: ScrollRight +\fBDefault\fP: ScrollRight -.SS \fBml\-row\-up\fP +.SS \fBml-row-up\fP .PP Select previous entry .PP -\fBDefault\fP: ScrollUp +\fBDefault\fP: ScrollUp -.SS \fBml\-row\-down\fP +.SS \fBml-row-down\fP .PP Select next entry .PP -\fBDefault\fP: ScrollDown +\fBDefault\fP: ScrollDown -.SS \fBme\-select\-entry\fP +.SS \fBme-select-entry\fP .PP Select hovered row .PP -\fBDefault\fP: MousePrimary +\fBDefault\fP: MousePrimary -.SS \fBme\-accept\-entry\fP +.SS \fBme-accept-entry\fP .PP Accept hovered row .PP -\fBDefault\fP: MouseDPrimary +\fBDefault\fP: MouseDPrimary -.SS \fBme\-accept\-custom\fP +.SS \fBme-accept-custom\fP .PP Accept hovered row with custom action .PP -\fBDefault\fP: Control+MouseDPrimary +\fBDefault\fP: Control+MouseDPrimary .SH SEE ALSO .PP -rofi(1), rofi\-sensible\-terminal(1), rofi\-theme(5), rofi\-script(5) +rofi(1), rofi-sensible-terminal(1), rofi-theme(5), rofi-script(5) .SH AUTHOR .PP -Qball Cow -\[la]qball@gmpclient.org\[ra] +Qball Cow qball@gmpclient.org +\[la]mailto:qball@gmpclient.org\[ra] .PP -Rasmus Steinke -\[la]rasi@xssn.at\[ra] +Rasmus Steinke rasi@xssn.at +\[la]mailto:rasi@xssn.at\[ra] .PP -Morgane Glidic -\[la]sardemff7+rofi@sardemff7.net\[ra] +Morgane Glidic sardemff7+rofi@sardemff7.net +\[la]mailto:sardemff7+rofi@sardemff7.net\[ra] .PP -Original code based on work by: Sean Pringle -\[la]sean.pringle@gmail.com\[ra] +Original code based on work by: Sean Pringle sean.pringle@gmail.com +\[la]mailto:sean.pringle@gmail.com\[ra] .PP For a full list of authors, check the AUTHORS file. diff --git a/doc/rofi-script.5 b/doc/rofi-script.5 index dc1e0a4d..9cac2e8b 100644 --- a/doc/rofi-script.5 +++ b/doc/rofi-script.5 @@ -1,7 +1,8 @@ -.TH ROFI\-SCRIPT 5 rofi\-script +.nh +.TH ROFI-SCRIPT 5 rofi-script .SH NAME .PP -\fBrofi script mode\fP \- Rofi format for scriptable mode. +\fBrofi script mode\fP - Rofi format for scriptable mode. .SH DESCRIPTION .PP @@ -19,7 +20,7 @@ For example: .RS .nf -rofi \-show fb \-modes "fb:file\_browser.sh" +rofi -show fb -modes "fb:file_browser.sh" .fi .RE @@ -61,7 +62,7 @@ This shows two entries, reload and quit. When the quit entry is selected, rofi c .PP Rofi sets the following environment variable when executing the script: -.SS \fB\fCROFI\_RETV\fR +.SS \fB\fCROFI_RETV\fR .PP An integer number with the current state: @@ -73,15 +74,15 @@ An integer number with the current state: .IP \(bu 2 \fB2\fP: Selected a custom entry. .IP \(bu 2 -\fB10\-28\fP: Custom keybinding 1\-19 ( need to be explicitly enabled by script ). +\fB10-28\fP: Custom keybinding 1-19 ( need to be explicitly enabled by script ). .RE -.SS \fB\fCROFI\_INFO\fR +.SS \fB\fCROFI_INFO\fR .PP Environment get set when selected entry get set with the property value of the 'info' row option, if set. -.SS \fB\fCROFI\_DATA\fR +.SS \fB\fCROFI_DATA\fR .PP Environment get set when script sets \fB\fCdata\fR option in header. @@ -97,7 +98,7 @@ For example to set the prompt: .RS .nf - echo \-en "\\0prompt\\x1fChange prompt\\n" + echo -en "\\0prompt\\x1fChange prompt\\n" .fi .RE @@ -111,7 +112,7 @@ The following extra options exists: .IP \(bu 2 \fBmessage\fP: Update the message text. .IP \(bu 2 -\fBmarkup\-rows\fP: If 'true' renders markup in the row. +\fBmarkup-rows\fP: If 'true' renders markup in the row. .IP \(bu 2 \fBurgent\fP: Mark rows as urgent. (for syntax see the urgent option in dmenu mode) .IP \(bu 2 @@ -119,11 +120,11 @@ The following extra options exists: .IP \(bu 2 \fBdelim\fP: Set the delimiter for for next rows. Default is '\\n' and this option should finish with this. Only call this on first call of script, it is remembered for consecutive calls. .IP \(bu 2 -\fBno\-custom\fP: If set to 'true'; only accept listed entries, ignore custom input. +\fBno-custom\fP: If set to 'true'; only accept listed entries, ignore custom input. .IP \(bu 2 -\fBuse\-hot\-keys\fP: If set to true, it enabled the Custom keybindings for script. Warning this breaks the normal rofi flow. +\fBuse-hot-keys\fP: If set to true, it enabled the Custom keybindings for script. Warning this breaks the normal rofi flow. .IP \(bu 2 -\fBdata\fP: Passed data to the next execution of the script via \fBROFI\_DATA\fP\&. +\fBdata\fP: Passed data to the next execution of the script via \fBROFI_DATA\fP\&. .RE @@ -139,7 +140,7 @@ For example: .RS .nf - echo \-en "aap\\0icon\\x1ffolder\\n" + echo -en "aap\\0icon\\x1ffolder\\n" .fi .RE @@ -155,7 +156,7 @@ The following options are supported: .IP \(bu 2 \fBnonselectable\fP: If true the row cannot activated. .IP \(bu 2 -\fBinfo\fP: Info that, on selection, gets placed in the \fB\fCROFI\_INFO\fR environment variable. This entry does not get searched. +\fBinfo\fP: Info that, on selection, gets placed in the \fB\fCROFI_INFO\fR environment variable. This entry does not get searched. .RE @@ -166,7 +167,7 @@ multiple entries can be passed using the \fB\fC\\x1f\fR separator. .RS .nf - echo \-en "aap\\0icon\\x1ffolder\\x1finfo\\x1ftest\\n" + echo -en "aap\\0icon\\x1ffolder\\x1finfo\\x1ftest\\n" .fi .RE @@ -183,7 +184,7 @@ In bash the best way to do this is using \fB\fCcoproc\fR\&. .RS .nf - coproc ( myApp > /dev/null 2>\&1 ) + coproc ( myApp > /dev/null 2>&1 ) .fi .RE @@ -195,24 +196,24 @@ See issue #1201 on github. .SH SEE ALSO .PP -rofi(1), rofi\-sensible\-terminal(1), dmenu(1), rofi\-theme(5), rofi\-theme\-selector(1) +rofi(1), rofi-sensible-terminal(1), dmenu(1), rofi-theme(5), rofi-theme-selector(1) .SH AUTHOR .PP -Qball Cow -\[la]qball@gmpclient.org\[ra] +Qball Cow qball@gmpclient.org +\[la]mailto:qball@gmpclient.org\[ra] .PP -Rasmus Steinke -\[la]rasi@xssn.at\[ra] +Rasmus Steinke rasi@xssn.at +\[la]mailto:rasi@xssn.at\[ra] .PP -Morgane Glidic -\[la]sardemff7+rofi@sardemff7.net\[ra] +Morgane Glidic sardemff7+rofi@sardemff7.net +\[la]mailto:sardemff7+rofi@sardemff7.net\[ra] .PP -Original code based on work by: Sean Pringle -\[la]sean.pringle@gmail.com\[ra] +Original code based on work by: Sean Pringle sean.pringle@gmail.com +\[la]mailto:sean.pringle@gmail.com\[ra] .PP For a full list of authors, check the AUTHORS file. diff --git a/doc/rofi-sensible-terminal.1 b/doc/rofi-sensible-terminal.1 index 30d4a15d..86634e19 100644 --- a/doc/rofi-sensible-terminal.1 +++ b/doc/rofi-sensible-terminal.1 @@ -1,17 +1,18 @@ -.TH rofi\-sensible\-terminal 1 rofi\-sensible\-terminal +.nh +.TH rofi-sensible-terminal 1 rofi-sensible-terminal .SH NAME .PP -\fBrofi\-sensible\-terminal\fP \- launches $TERMINAL with fallbacks +\fBrofi-sensible-terminal\fP - launches $TERMINAL with fallbacks .SH SYNOPSIS .PP -rofi\-sensible\-terminal [arguments] +rofi-sensible-terminal [arguments] .SH DESCRIPTION .PP -rofi\-sensible\-terminal is invoked in the rofi default config to start a terminal. This -wrapper script is necessary since there is no distribution\-independent terminal launcher -(but for example Debian has x\-terminal\-emulator). Distribution packagers are responsible for +rofi-sensible-terminal is invoked in the rofi default config to start a terminal. This +wrapper script is necessary since there is no distribution-independent terminal launcher +(but for example Debian has x-terminal-emulator). Distribution packagers are responsible for shipping this script in a way which is appropriate for the distribution. .PP @@ -19,9 +20,9 @@ It tries to start one of the following (in that order): .RS .IP \(bu 2 -\fB\fC$TERMINAL\fR (this is a non\-standard variable) +\fB\fC$TERMINAL\fR (this is a non-standard variable) .IP \(bu 2 -x\-terminal\-emulator +x-terminal-emulator .IP \(bu 2 urxvt .IP \(bu 2 @@ -43,9 +44,9 @@ xterm .IP \(bu 2 roxterm .IP \(bu 2 -xfce4\-terminal.wrapper +xfce4-terminal.wrapper .IP \(bu 2 -mate\-terminal +mate-terminal .IP \(bu 2 lxterminal .IP \(bu 2 diff --git a/doc/rofi-theme-selector.1 b/doc/rofi-theme-selector.1 index de076ff4..96df43df 100644 --- a/doc/rofi-theme-selector.1 +++ b/doc/rofi-theme-selector.1 @@ -1,38 +1,39 @@ -.TH rofi\-theme\-selector 1 rofi\-theme\-selector +.nh +.TH rofi-theme-selector 1 rofi-theme-selector .SH NAME .PP -\fBrofi\-theme\-selector\fP \- Preview and apply themes for \fBrofi\fP +\fBrofi-theme-selector\fP - Preview and apply themes for \fBrofi\fP .SH DESCRIPTION .PP -\fBrofi\-theme\-selector\fP is a bash/rofi script to preview and apply themes for \fBrofi\fP\&. +\fBrofi-theme-selector\fP is a bash/rofi script to preview and apply themes for \fBrofi\fP\&. It's part of any installation of \fBrofi\fP\&. .SH USAGE -.SS Running rofi\-theme\-selector +.SS Running rofi-theme-selector .PP -\fBrofi\-theme\-selector\fP shows a list of all available themes in a \fBrofi\fP window. +\fBrofi-theme-selector\fP shows a list of all available themes in a \fBrofi\fP window. It lets you preview each theme with the Enter key and apply the theme to your \fBrofi\fP configuration file with Alt+a. .SH Theme directories .PP -\fBrofi\-theme\-selector\fP searches the following directories for themes: +\fBrofi-theme-selector\fP searches the following directories for themes: .RS .IP \(bu 2 ${PREFIX}/share/rofi/themes .IP \(bu 2 -$XDG\_CONFIG\_HOME/rofi/themes +$XDG_CONFIG_HOME/rofi/themes .IP \(bu 2 -$XDG\_DATA\_HOME/share/rofi/themes +$XDG_DATA_HOME/share/rofi/themes .RE .PP -${PREFIX} reflects the install location of rofi. In most cases this will be "/usr".
-$XDG\_CONFIG\_HOME is normally unset. Default path is "$HOME/.config".
-$XDG\_DATA\_HOME is normally unset. Default path is "$HOME/.local/share". +${PREFIX} reflects the install location of rofi. In most cases this will be "/usr". +$XDG_CONFIG_HOME is normally unset. Default path is "$HOME/.config". +$XDG_DATA_HOME is normally unset. Default path is "$HOME/.local/share". .SH SEE ALSO .PP @@ -40,5 +41,5 @@ rofi(1) .SH AUTHORS .PP -Qball Cow qball@gmpclient.org
+Qball Cow qball@gmpclient.org Rasmus Steinke rasi@xssn.at diff --git a/doc/rofi-theme.5 b/doc/rofi-theme.5 index ad80f3ee..65dc8d6e 100644 --- a/doc/rofi-theme.5 +++ b/doc/rofi-theme.5 @@ -1,7 +1,8 @@ -.TH ROFI\-THEME 5 rofi\-theme +.nh +.TH ROFI-THEME 5 rofi-theme .SH NAME .PP -\fBrofi\-theme\fP \- Rofi theme format files +\fBrofi-theme\fP - Rofi theme format files .SH DEFAULT THEME LOADING .PP @@ -36,7 +37,7 @@ To see the default theme, run the following command: .RS .nf -rofi \-no\-config \-dump\-theme +rofi -no-config -dump-theme .fi .RE @@ -46,12 +47,12 @@ rofi \-no\-config \-dump\-theme The need for a new theme format was motivated by the fact that the way rofi handled widgets has changed. From a very static drawing of lines and text to a nice structured form of packing widgets. This change made it possible to provide a more flexible theme framework. The old theme format and config file are not flexible enough to expose these options in a -user\-friendly way. Therefore, a new file format has been created, replacing the old one. +user-friendly way. Therefore, a new file format has been created, replacing the old one. .SH FORMAT SPECIFICATION .SH Encoding .PP -The encoding of the file is utf\-8. Both unix (\fB\fC\\n\fR) and windows (\fB\fC\\r\\n\fR) newlines format are supported. But unix is +The encoding of the file is utf-8. Both unix (\fB\fC\\n\fR) and windows (\fB\fC\\r\\n\fR) newlines format are supported. But unix is preferred. .SH Comments @@ -62,7 +63,7 @@ C and C++ file comments are supported. .IP \(bu 2 Anything after \fB\fC//\fR and before a newline is considered a comment. .IP \(bu 2 -Everything between \fB\fC/*\fR and \fB\fC*/\fR is a comment. +Everything between \fB\fC/*\fR and \fB\fC*/\fR is a comment, this comment can span multiple lines. .RE @@ -133,7 +134,7 @@ abbreviation for \fBr\fPofi \fBa\fPdvanced \fBs\fPtyle \fBi\fPnformation. .SH Basic Structure .PP Each element has a section with defined properties. Global properties can be defined in section \fB\fC* { }\fR\&. -Sub\-section names begin with a hash symbol \fB\fC#\fR\&. +Sub-section names begin with an optional hash symbol \fB\fC#\fR\&. .PP It is advised to define the \fIglobal properties section\fP on top of the file to @@ -182,9 +183,9 @@ A theme can have multiple element theme sections. .PP The element path can consist of multiple names separated by whitespace or dots. -Each element may contain any number of letters, numbers and \fB\fC\-\fR\&'s. -The first element in the element path should always start with a \fB\fC#\fR\&. -Multiple elements can be specified by a \fB\fC,\fR\&. +Each element may contain any number of letters, numbers and \fB\fC-\fR\&'s. +The first element in the element path can optionally start with a \fB\fC#\fR (for +historic reasons). Multiple elements can be specified by a \fB\fC,\fR\&. .PP This is a valid element name: @@ -194,10 +195,10 @@ This is a valid element name: .nf element normal.normal { - background\-color: blue; + background-color: blue; } button { - background\-color: blue; + background-color: blue; } .fi @@ -211,15 +212,15 @@ And is identical to: .nf element normal normal, button { - background\-color: blue; + background-color: blue; } .fi .RE .PP -Each section inherits the global properties. Properties can be explicitly inherited from their parent with the -\fB\fCinherit\fR keyword. +Each section inherits the global properties. Properties can be explicitly +inherited from their parent with the \fB\fCinherit\fR keyword. In the following example: .PP @@ -241,7 +242,8 @@ mainbox { .RE .PP -The element \fB\fCmainbox\fR will have the following set of properties (if \fB\fCmainbox\fR is a child of \fB\fCwindow\fR): +The element \fB\fCmainbox\fR will have the following set of properties (if \fB\fCmainbox\fR +is a child of \fB\fCwindow\fR): .PP .RS @@ -277,7 +279,7 @@ Both fields are mandatory for a property. .PP The \fB\fCidentifier\fR names the specified property. Identifiers can consist of any -combination of numbers, letters and '\-'. It must not contain any whitespace. +combination of numbers, letters and '-'. It must not contain any whitespace. The structure of the \fB\fCvalue\fR defines the type of the property. The current parser does not define or enforce a certain type of a particular \fB\fCidentifier\fR\&. When used, values with the wrong type that cannot be converted are ignored. @@ -353,12 +355,26 @@ font: "Awasome 12"; .RE .PP -The string must be valid UTF\-8. +The string must be valid UTF-8, special characters can be escaped: + +.PP +.RS + +.nf +text { + content: "Line one\\n\\tIndented line two"; +} + +.fi +.RE + +.PP +The following special characters can be escaped: \fB\fC\\b\fR, \fB\fC\\f\fR, \fB\fC\\n\fR, \fB\fC\\r\fR, \fB\fC\\t\fR, \fB\fC\\v\fR, \fB\fC\\\fR and \fB\fC"\fR\&. .SH Integer .RS .IP \(bu 2 -Format: \fB\fC[\-+]?[:digit:]+\fR +Format: \fB\fC[-+]?[:digit:]+\fR .RE @@ -380,7 +396,7 @@ lines: 12; .SH Real .RS .IP \(bu 2 -Format: \fB\fC[\-+]?[:digit:]+(\\.[:digit:]+)?\fR +Format: \fB\fC[-+]?[:digit:]+(\\.[:digit:]+)?\fR .RE @@ -400,7 +416,7 @@ real: 3.4; .RE .PP -The following is not valid: \fB\fC\&.3\fR, \fB\fC3.\fR or scientific notation: \fB\fC3.4e\-3\fR\&. +The following is not valid: \fB\fC\&.3\fR, \fB\fC3.\fR or scientific notation: \fB\fC3.4e-3\fR\&. .SH Boolean .RS @@ -410,7 +426,7 @@ Format: \fB\fC(true|false)\fR .RE .PP -Boolean value is either \fB\fCtrue\fR or \fB\fCfalse\fR\&. This is case\-\&sensitive. +Boolean value is either \fB\fCtrue\fR or \fB\fCfalse\fR\&. This is case-sensitive. .PP For example: @@ -426,7 +442,7 @@ dynamic: false; .SH Image .PP -\fBrofi\fP support a limited set of background\-image formats. +\fBrofi\fP support a limited set of background-image formats. .RS .IP \(bu 2 @@ -435,12 +451,12 @@ Format: url("path to image"); Format: url("path to image", scale); where scale is: none, both, width, height .IP \(bu 2 -Format: linear\-gradient(stop color,stop1, color, stop2 color, ...); +Format: linear-gradient(stop color,stop1, color, stop2 color, ...); .IP \(bu 2 -Format: linear\-gradient(to direction, stop color,stop1, color, stop2 color, ...); +Format: linear-gradient(to direction, stop color,stop1, color, stop2 color, ...); where direction is: top,left,right,bottom. .IP \(bu 2 -Format: linear\-gradient(angle, stop color,stop1, color, stop2 color, ...); +Format: linear-gradient(angle, stop color,stop1, color, stop2 color, ...); Angle in deg,rad,grad (as used in color). .RE @@ -472,31 +488,27 @@ Format: \fB\fChwb[a]( {ANGLE}, {PERCENTAGE}, {PERCENTAGE} [, {PERCENTAGE}])\fR .IP \(bu 2 Format: \fB\fCcmyk( {PERCENTAGE}, {PERCENTAGE}, {PERCENTAGE}, {PERCENTAGE} [, {PERCENTAGE} ])\fR .IP \(bu 2 -Format: \fB\fC{named\-color} [ / {PERCENTAGE} ]\fR +Format: \fB\fC{named-color} [ / {PERCENTAGE} ]\fR .RE .PP -The white\-space format proposed in CSS4 is also supported. +The white-space format proposed in CSS4 is also supported. .PP The different values are: .RS .IP \(bu 2 -\fB\fC{HEX}\fR is a hexadecimal number ('0\-9a\-f' case insensitive). +\fB\fC{HEX}\fR is a hexadecimal number ('0-9a-f' case insensitive). .IP \(bu 2 -\fB\fC{INTEGER}\fR value can be between 0 and 255 or 0\-100 when representing percentage. +\fB\fC{INTEGER}\fR value can be between 0 and 255 or 0-100 when representing percentage. .IP \(bu 2 \fB\fC{ANGLE}\fR is the angle on the color wheel, can be in \fB\fCdeg\fR, \fB\fCrad\fR, \fB\fCgrad\fR or \fB\fCturn\fR\&. When no unit is specified, degrees is assumed. .IP \(bu 2 -\fB\fC{PERCENTAGE}\fR can be between 0\-1.0, or 0%\-100% +\fB\fC{PERCENTAGE}\fR can be between 0-1.0, or 0%-100% .IP \(bu 2 - -.PP -\fB\fC{named\-color}\fR is one of the following colors: -.PP -AliceBlue, AntiqueWhite, Aqua, Aquamarine, Azure, Beige, Bisque, Black, BlanchedAlmond, Blue, BlueViolet, Brown, +\fB\fC{named-color}\fR is one of the following colors:AliceBlue, AntiqueWhite, Aqua, Aquamarine, Azure, Beige, Bisque, Black, BlanchedAlmond, Blue, BlueViolet, Brown, BurlyWood, CadetBlue, Chartreuse, Chocolate, Coral, CornflowerBlue, Cornsilk, Crimson, Cyan, DarkBlue, DarkCyan, DarkGoldenRod, DarkGray, DarkGrey, DarkGreen, DarkKhaki, DarkMagenta, DarkOliveGreen, DarkOrange, DarkOrchid, DarkRed, DarkSalmon, DarkSeaGreen, DarkSlateBlue, DarkSlateGray, DarkSlateGrey, DarkTurquoise, DarkViolet, DeepPink, DeepSkyBlue, @@ -520,9 +532,9 @@ For example: .RS .nf -background\-color: #FF0000; -border\-color: rgba(0,0,1, 0.5); -text\-color: SeaGreen; +background-color: #FF0000; +border-color: rgba(0,0,1, 0.5); +text-color: SeaGreen; .fi .RE @@ -534,8 +546,8 @@ or .RS .nf -background\-color: transparent; -text\-color: Black; +background-color: transparent; +text-color: Black; .fi .RE @@ -623,7 +635,7 @@ For example: .RE .PP -On a full\-HD (1920x1080) monitor, it defines a padding of 192 pixels on the left +On a full-HD (1920x1080) monitor, it defines a padding of 192 pixels on the left and right side and 108 pixels on the top and bottom. .SS Calculating sizes @@ -634,7 +646,7 @@ Rofi supports some maths in calculating sizes. For this it uses the CSS syntax: .RS .nf -width: calc( 100% \- 37px ); +width: calc( 100% - 37px ); .fi .RE @@ -646,17 +658,17 @@ It supports the following operations: .IP \(bu 2 \fB\fC+\fR : Add .IP \(bu 2 -\fB\fC\-\fR : Subtract +\fB\fC-\fR : Subtract .IP \(bu 2 \fB\fC/\fR : Divide .IP \(bu 2 \fB\fC*\fR : Multiply .IP \(bu 2 -\fB\fC%\fR : Multiply +\fB\fC%\fR : Modulo .IP \(bu 2 -\fB\fCmin\fR : Minimum of l or rvalue; +\fB\fCmin\fR : Minimum of lvalue or rvalue; .IP \(bu 2 -\fB\fCmax\fR : Maximum of l or rvalue; +\fB\fCmax\fR : Maximum of lvalue or rvalue; .IP \(bu 2 \fB\fCfloor\fR : Round down lvalue to the next multiple of rvalue .IP \(bu 2 @@ -694,9 +706,9 @@ The different number of fields in the formats are parsed like: .IP \(bu 2 1 field: \fB\fCall\fR .IP \(bu 2 -2 fields: \fB\fCtop\&bottom\fR \fB\fCleft\&right\fR +2 fields: \fB\fCtop&bottom\fR \fB\fCleft&right\fR .IP \(bu 2 -3 fields: \fB\fCtop\fR, \fB\fCleft\&right\fR, \fB\fCbottom\fR +3 fields: \fB\fCtop\fR, \fB\fCleft&right\fR, \fB\fCbottom\fR .IP \(bu 2 4 fields: \fB\fCtop\fR, \fB\fCright\fR, \fB\fCbottom\fR, \fB\fCleft\fR @@ -734,6 +746,7 @@ style property. .PP When no unit is specified, pixels are assumed. + .RE .SH Position @@ -742,22 +755,14 @@ Indicate a place on the window/monitor. .RS .IP \(bu 2 - -.PP Format: \fB\fC(center|east|north|west|south|north east|north west|south west|south east)\fR -.PP -.RS - -.nf - +\fB\fC north west | north | north east -\-\-\-\-\-\-\-\-\-\-\-\-\-|\-\-\-\-\-\-\-\-\-\-\-\-\-|\-\-\-\-\-\-\-\-\-\-\-\- +-------------|-------------|------------ west | center | east -\-\-\-\-\-\-\-\-\-\-\-\-\-|\-\-\-\-\-\-\-\-\-\-\-\-\-|\-\-\-\-\-\-\-\-\-\-\-\- +-------------|-------------|------------ south west | south | south east - -.fi -.RE +\fR .RE @@ -766,10 +771,16 @@ south west | south | south east It is possible to hide widgets: .PP +.RS + +.nf inputbar { enabled: false; } +.fi +.RE + .SH Reference .RS .IP \(bu 2 @@ -865,7 +876,7 @@ Format: \fB\fC[ keyword, keyword ]\fR .RE .PP -A list starts with a '[' and ends with a ']'. The entries in the list are comma\-separated. +A list starts with a '[' and ends with a ']'. The entries in the list are comma-separated. The \fB\fCkeyword\fR in the list refers to an widget name. .SH List of values @@ -876,7 +887,7 @@ Format: \fB\fC[ value, value, ... ]\fR .RE .PP -An list starts with a '[' and ends with a ']'. The entries in the list are comma\-separated. +An list starts with a '[' and ends with a ']'. The entries in the list are comma-separated. .SH Environment variable .RS @@ -887,14 +898,14 @@ Format: \fB\fC${:alnum:}\fR .PP This will parse the environment variable as the property value. (that then can be any of the above types). -The environment variable should be an alphanumeric string without white\-space. +The environment variable should be an alphanumeric string without white-space. .PP .RS .nf * { - background\-color: ${BG}; + background-color: ${BG}; } .fi @@ -908,7 +919,7 @@ Format: \fB\fCenv(ENVIRONMENT, default)\fR .PP This will parse the environment variable as the property value. (that then can be any of the above types). -The environment variable should be an alphanumeric string without white\-space. +The environment variable should be an alphanumeric string without white-space. If the environment value is not found, the default value is used. .PP @@ -940,7 +951,7 @@ Inherits the property from its parent widget. .nf mainbox { - border\-color: inherit; + border-color: inherit; } .fi @@ -992,7 +1003,6 @@ The current widgets available in \fBrofi\fP: .RS .IP \(bu 2 \fB\fCwindow\fR - .RS .IP \(bu 2 \fB\fCoverlay\fR: the overlay widget. @@ -1000,61 +1010,62 @@ The current widgets available in \fBrofi\fP: \fB\fCmainbox\fR: The mainbox box. .IP \(bu 2 \fB\fCinputbar\fR: The input bar box. - .RS .IP \(bu 2 \fB\fCbox\fR: the horizontal @box packing the widgets .IP \(bu 2 -\fB\fCcase\-indicator\fR: the case/sort indicator @textbox +\fB\fCcase-indicator\fR: the case/sort indicator @textbox .IP \(bu 2 \fB\fCprompt\fR: the prompt @textbox .IP \(bu 2 \fB\fCentry\fR: the main entry @textbox .IP \(bu 2 -\fB\fCnum\-rows\fR: Shows the total number of rows. +\fB\fCnum-rows\fR: Shows the total number of rows. .IP \(bu 2 -\fB\fCnum\-filtered\-rows\fR: Shows the total number of rows after filtering. +\fB\fCnum-filtered-rows\fR: Shows the total number of rows after filtering. .RE + .IP \(bu 2 \fB\fClistview\fR: The listview. - .RS .IP \(bu 2 \fB\fCscrollbar\fR: the listview scrollbar .IP \(bu 2 \fB\fCelement\fR: a box in the listview holding the entries - .RS .IP \(bu 2 -\fB\fCelement\-icon\fR: the widget in the listview's entry showing the (optional) icon +\fB\fCelement-icon\fR: the widget in the listview's entry showing the (optional) icon .IP \(bu 2 -\fB\fCelement\-index\fR: the widget in the listview's entry keybindable index (1,2,3..0) +\fB\fCelement-index\fR: the widget in the listview's entry keybindable index (1,2,3..0) .IP \(bu 2 -\fB\fCelement\-text\fR: the widget in the listview's entry showing the text. +\fB\fCelement-text\fR: the widget in the listview's entry showing the text. .RE + .RE -.IP \(bu 2 -\fB\fCmode\-switcher\fR: the main horizontal @box packing the buttons. +.IP \(bu 2 +\fB\fCmode-switcher\fR: the main horizontal @box packing the buttons. .RS .IP \(bu 2 \fB\fCbutton\fR: the buttons @textbox for each mode .RE + .IP \(bu 2 \fB\fCmessage\fR: The container holding the textbox. - .RS .IP \(bu 2 \fB\fCtextbox\fR: the message textbox .RE + .RE + .RE .PP @@ -1108,8 +1119,8 @@ Example: .nf nametotextbox selected.active { - background\-color: #003642; - text\-color: #008ed4; + background-color: #003642; + text-color: #008ed4; } .fi @@ -1131,30 +1142,30 @@ The following properties are currently supported: .SS all widgets: .RS .IP \(bu 2 -\fBenabled\fP: enable/disable rendering of the widget +\fBenabled\fP: enable/disable rendering of the widget .IP \(bu 2 -\fBpadding\fP: padding +\fBpadding\fP: padding Padding on the inside of the widget .IP \(bu 2 -\fBmargin\fP: padding +\fBmargin\fP: padding Margin on the outside of the widget .IP \(bu 2 -\fBborder\fP: border +\fBborder\fP: border Border around the widget (between padding and margin)/ .IP \(bu 2 -\fBborder\-radius\fP: padding +\fBborder-radius\fP: padding Sets a radius on the corners of the borders. .IP \(bu 2 -\fBbackground\-color\fP: color +\fBbackground-color\fP: color Background color .IP \(bu 2 -\fBbackground\-image\fP: image +\fBbackground-image\fP: image Background image .IP \(bu 2 -\fBborder\-color\fP: color +\fBborder-color\fP: color Color of the border .IP \(bu 2 -\fBcursor\fP: cursor +\fBcursor\fP: cursor Type of mouse cursor that is set when the mouse pointer is hovered over the widget. .RE @@ -1162,47 +1173,31 @@ Type of mouse cursor that is set when the mouse pointer is hovered over the widg .SS window: .RS .IP \(bu 2 - -.PP \fBfont\fP: string The font used in the window .IP \(bu 2 - -.PP \fBtransparency\fP: string Indicating if transparency should be used and what type: -\fBreal\fP \- True transparency. Only works with a compositor. -\fBbackground\fP \- Take a screenshot of the background image and use that. -\fBscreenshot\fP \- Take a screenshot of the screen and use that. -\fBPath\fP to png file \- Use an image. +\fBreal\fP - True transparency. Only works with a compositor. +\fBbackground\fP - Take a screenshot of the background image and use that. +\fBscreenshot\fP - Take a screenshot of the screen and use that. +\fBPath\fP to png file - Use an image. .IP \(bu 2 - -.PP \fBlocation\fP: position The place of the anchor on the monitor .IP \(bu 2 - -.PP \fBanchor\fP: anchor The anchor position on the window .IP \(bu 2 - -.PP \fBfullscreen\fP: boolean Window is fullscreen. .IP \(bu 2 - -.PP \fBwidth\fP: distance The width of the window .IP \(bu 2 - -.PP -\fBx\-offset\fP: distance +\fBx-offset\fP: distance .IP \(bu 2 - -.PP -\fBy\-offset\fP: distance +\fBy-offset\fP: distance The offset of the window to the anchor point, allowing you to push the window left/right/up/down .RE @@ -1210,13 +1205,13 @@ The offset of the window to the anchor point, allowing you to push the window le .SS scrollbar: .RS .IP \(bu 2 -\fBbackground\-color\fP: color +\fBbackground-color\fP: color .IP \(bu 2 -\fBhandle\-width\fP: distance +\fBhandle-width\fP: distance .IP \(bu 2 -\fBhandle\-color\fP: color +\fBhandle-color\fP: color .IP \(bu 2 -\fBborder\-color\fP: color +\fBborder-color\fP: color .RE @@ -1226,7 +1221,7 @@ The offset of the window to the anchor point, allowing you to push the window le \fBorientation\fP: orientation Set the direction the elements are packed. .IP \(bu 2 -\fBspacing\fP: distance +\fBspacing\fP: distance Distance between the packed elements. .RE @@ -1234,23 +1229,23 @@ The offset of the window to the anchor point, allowing you to push the window le .SS textbox: .RS .IP \(bu 2 -\fBbackground\-color\fP: color +\fBbackground-color\fP: color .IP \(bu 2 -\fBborder\-color\fP: the color used for the border around the widget. +\fBborder-color\fP: the color used for the border around the widget. .IP \(bu 2 \fBfont\fP: the font used by this textbox (string). .IP \(bu 2 -\fBstr\fP: the string to display by this textbox (string). +\fBstr\fP/\fBcontent\fP: the string to display by this textbox (string). .IP \(bu 2 -\fBvertical\-align\fP: Vertical alignment of the text. A number between 0 (top) and 1 (bottom). +\fBvertical-align\fP: Vertical alignment of the text. A number between 0 (top) and 1 (bottom). .IP \(bu 2 -\fBhorizontal\-align\fP: Horizontal alignment of the text. A number between 0 (left) and 1 (right). +\fBhorizontal-align\fP: Horizontal alignment of the text. A number between 0 (left) and 1 (right). .IP \(bu 2 -\fBtext\-color\fP: the text color to use. +\fBtext-color\fP: the text color to use. .IP \(bu 2 \fBhighlight\fP: text style {color}. color is optional, multiple highlight styles can be added like: bold underline italic #000000; -This option is only available on the \fB\fCelement\-text\fR widget. +This option is only available on the \fB\fCelement-text\fR widget. .IP \(bu 2 \fBwidth\fP: override the desired width for the textbox. .IP \(bu 2 @@ -1258,13 +1253,13 @@ This option is only available on the \fB\fCelement\-text\fR widget. .IP \(bu 2 \fBplaceholder\fP: Set the displayed text (String) when nothing is entered. .IP \(bu 2 -\fBplaceholder\-color\fP: Color of the placeholder text. +\fBplaceholder-color\fP: Color of the placeholder text. .IP \(bu 2 \fBblink\fP: Enable/Disable blinking on an input textbox (Boolean). .IP \(bu 2 \fBmarkup\fP: Force markup on, beware that only valid pango markup strings are shown. .IP \(bu 2 -\fBtab\-stops\fP: array of distances +\fBtab-stops\fP: array of distances Set the location of tab stops by their distance from the beginning of the line. Each distance should be greater than the previous one. The text appears to the right of the tab stop position (other alignments are not supported yet). @@ -1277,7 +1272,7 @@ The text appears to the right of the tab stop position (other alignments are not \fBcolumns\fP: integer Number of columns to show (at least 1) .IP \(bu 2 -\fBfixed\-height\fP: boolean +\fBfixed-height\fP: boolean Always show \fB\fClines\fR rows, even if fewer elements are available. .IP \(bu 2 \fBdynamic\fP: boolean @@ -1286,7 +1281,7 @@ Always show \fB\fClines\fR rows, even if fewer elements are available. \fBscrollbar\fP: boolean If the scrollbar should be enabled/disabled. .IP \(bu 2 -\fBscrollbar\-width\fP: distance +\fBscrollbar-width\fP: distance Width of the scrollbar .IP \(bu 2 \fBcycle\fP: boolean @@ -1307,20 +1302,20 @@ Reverse the ordering (top down to bottom up). \fBflow\fP: orientation The order the elements are layed out. Vertical is the original 'column' view. .IP \(bu 2 -\fBfixed\-columns\fP: boolean +\fBfixed-columns\fP: boolean Do not reduce the number of columns shown when number of visible elements is not enough to fill them all. .RE .PP -Each element is a \fB\fCbox\fR called \fB\fCelement\fR\&. Each \fB\fCelement\fR can contain an \fB\fCelement\-icon\fR and \fB\fCelement\-text\fR\&. +Each element is a \fB\fCbox\fR called \fB\fCelement\fR\&. Each \fB\fCelement\fR can contain an \fB\fCelement-icon\fR and \fB\fCelement-text\fR\&. .SS listview text highlight: .PP -The \fB\fCelement\-text\fR widget in the \fB\fClistview\fR is the one used to show the text. +The \fB\fCelement-text\fR widget in the \fB\fClistview\fR is the one used to show the text. On this widget set the \fB\fChighlight\fR property (only place this property is used) to change the style of highlighting. -The \fB\fChighlight\fR property consist of the \fB\fCtext\-style\fR property and a color. +The \fB\fChighlight\fR property consist of the \fB\fCtext-style\fR property and a color. .PP To disable highlighting: @@ -1329,7 +1324,7 @@ To disable highlighting: .RS .nf - element\-text { + element-text { highlight: None; } @@ -1343,7 +1338,7 @@ To set to red underlined: .RS .nf - element\-text { + element-text { highlight: underline red; } @@ -1369,42 +1364,42 @@ The current layout of \fBrofi\fP is structured as follows: .RS .nf -|\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| +|------------------------------------------------------------------------------------| | window {BOX:vertical} | -| |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| | +| |-------------------------------------------------------------------------------| | | | mainbox {BOX:vertical} | | -| | |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| | | +| | |---------------------------------------------------------------------------| | | | | | inputbar {BOX:horizontal} | | | -| | | |\-\-\-\-\-\-\-\-\-| |\-| |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-|\-\-\-| |\-\-\-| |\-\-\-| |\-\-\-| | | | +| | | |---------| |-| |---------------------------------|---| |---| |---| |---| | | | | | | | prompt | |:| | entry |#fr| | / | |#ns| |ci | | | | -| | | |\-\-\-\-\-\-\-\-\-| |\_| |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-|\-\-\-| |\-\-\-| |\-\-\-| |\-\-\-| | | | -| | |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| | | +| | | |---------| |_| |---------------------------------|---| |---| |---| |---| | | | +| | |---------------------------------------------------------------------------| | | | | | | -| | |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| | | +| | |---------------------------------------------------------------------------| | | | | | message | | | -| | | |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| | | | +| | | |-----------------------------------------------------------------------| | | | | | | | textbox | | | | -| | | |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| | | | -| | |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| | | +| | | |-----------------------------------------------------------------------| | | | +| | |---------------------------------------------------------------------------| | | | | | | -| | |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| | +| | |-----------------------------------------------------------------------------| | | | | listview | | -| | | |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-] | | +| | | |------------------------------------------------------------------------] | | | | | | element | | | -| | | | |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-] | | | -| | | | |element\-icon | |element\-text | | | | -| | | | |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| | | | -| | | |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-] | | -| | |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| | +| | | | |-----------------| |------------------------------------------------] | | | +| | | | |element-icon | |element-text | | | | +| | | | |-----------------| |------------------------------------------------| | | | +| | | |------------------------------------------------------------------------] | | +| | |-----------------------------------------------------------------------------| | | | | | -| | |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| | | -| | | mode\-switcher {BOX:horizontal} | | | -| | | |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| |\-\-\-\-\-\-\-\-\-\-\-\-\-\-| |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| | | | +| | |---------------------------------------------------------------------------| | | +| | | mode-switcher {BOX:horizontal} | | | +| | | |---------------| |---------------| |--------------| |---------------| | | | | | | | Button | | Button | | Button | | Button | | | | -| | | |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| |\-\-\-\-\-\-\-\-\-\-\-\-\-\-| |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| | | | -| | |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| | | -| |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| | -|\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| +| | | |---------------| |---------------| |--------------| |---------------| | | | +| | |---------------------------------------------------------------------------| | | +| |-------------------------------------------------------------------------------| | +|------------------------------------------------------------------------------------| @@ -1416,11 +1411,11 @@ The current layout of \fBrofi\fP is structured as follows: .RS .IP \(bu 2 -ci is the case\-indicator +ci is the case-indicator .IP \(bu 2 -fr is the num\-filtered\-rows +fr is the num-filtered-rows .IP \(bu 2 -ns is the num\-rows +ns is the num-rows .RE @@ -1431,15 +1426,15 @@ ns is the num\-rows .RS .nf -|\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| +|-----------------------------------------------------------------------------------| | window {BOX:vertical} | -| |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| | -| | error\-message {BOX:vertical} | | -| | |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| | | +| |------------------------------------------------------------------------------| | +| | error-message {BOX:vertical} | | +| | |-------------------------------------------------------------------------| | | | | | textbox | | | -| | |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| | | -| |\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| | -|\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-| +| | |-------------------------------------------------------------------------| | | +| |------------------------------------------------------------------------------| | +|-----------------------------------------------------