rofi/doc/rofi.1

1827 lines
36 KiB
Groff
Raw Normal View History

2020-01-26 14:48:17 +00:00
.TH ROFI 1 rofi
.SH NAME
.PP
\fBrofi\fP \- A window switcher, application launcher, ssh dialog and dmenu replacement
.SH SYNOPSIS
.PP
\fBrofi\fP [ \-show \fImode\fP ]|[ \-dmenu ]|[ \-e \fImsg\fP ] [ CONFIGURATION ]
.SH DESCRIPTION
.PP
\fBrofi\fP is an X11 pop\-up window switcher, run dialog, dmenu replacement, and more. It focuses on
being fast to use and have minimal distraction. It supports keyboard and mouse navigation, type to
filter, tokenized search and more.
.SH USAGE
.PP
\fBrofi\fP\&'s main functionality is to assist in your workflow, allowing you to quickly switch
between windows, start applications or log into a remote machine via \fB\fCssh\fR\&.
There are different \fImodi\fP for different types of actions.
2020-01-26 14:48:17 +00:00
.PP
\fBrofi\fP can also function as (drop\-in) replacement for \fBdmenu(1)\fP\&.
.SS Running rofi
.PP
To launch \fBrofi\fP directly in a certain mode, specify a mode with \fB\fCrofi \-show <mode>\fR\&.
To show the \fB\fCrun\fR dialog:
2020-01-26 14:48:17 +00:00
.PP
.RS
.nf
rofi \-show run
2020-01-26 14:48:17 +00:00
2015-04-05 19:49:55 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.SS Emulating dmenu
.PP
\fBrofi\fP can emulate \fBdmenu(1)\fP (a dynamic menu for X) when launched with the \fB\fC\-dmenu\fR flag.
.PP
The website for \fB\fCdmenu\fR can be found here
\[la]http://tools.suckless.org/dmenu/\[ra]\&.
2020-01-26 14:48:17 +00:00
.PP
\fBrofi\fP does not aim to be 100% compatible with \fB\fCdmenu\fR\&. There are simply too many different flavors of \fB\fCdmenu\fR\&.
The idea is that the basic usage command\-line flags are obeyed, theme\-related flags are not.
2020-01-26 14:48:17 +00:00
Besides, \fBrofi\fP offers some extended features (like multi\-select, highlighting, message bar, extra key bindings).
.SS Display Error message
.PP
\fBrofi\fP error dialog can also be called from the command line.
.PP
.RS
.nf
rofi \-e "my message"
2020-01-26 14:48:17 +00:00
2017-07-22 19:11:46 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
Markup support can be enabled, see CONFIGURATION options.
.SH CONFIGURATION
.PP
2016-03-05 19:52:46 +00:00
There are currently three methods of setting configuration options (evaluated in order below):
2020-01-26 14:48:17 +00:00
.IP \(bu 2
System configuration file (for example \fB\fC/etc/rofi.rasi\fR or old format \fB\fC/etc/rofi.conf\fR).
It first checks XDG\_CONFIG\_DIRS and then SYSCONFDIR (that is passed at compile time).
It loads the first config file it finds, it does not merge multiple system configuration files.
2020-01-26 14:48:17 +00:00
.IP \(bu 2
Xresources: A method of storing key values in the Xserver. See
here
\[la]https://en.wikipedia.org/wiki/X_resources\[ra] for more information.
.IP \(bu 2
Rasi theme file: The new \fItheme\fP format can be used to set configuration values.
.IP \(bu 2
Configuration File: This uses the same format as the Xresources file.
By default it looks in \fB\fCXDG\_CONFIG\_HOME\fR/rofi/config, but can be overridden on commandline.
By default \fB\fCXDG\_CONFIG\_HOME\fR defaults to \fB\fC$HOME/.config\fR\&. (See \fB\fCrofi \-h\fR for current location).
2020-01-26 14:48:17 +00:00
This is the recommended way of configuring \fBrofi\fP\&.
.IP \(bu 2
Command\-line options: Arguments passed to \fBrofi\fP\&.
.PP
\fBTIP\fP: To get a template config file run: \fB\fCrofi \-dump\-xresources > rofi\-example.config\fR\&.
.PP
\fBNOTE\fP: In version 1.4.0 we support configuration in a new format, a config for this can be generated by:
\fB\fCrofi \-dump\-config > config.rasi\fR
.PP
2020-01-26 14:48:17 +00:00
\fBNOTE\fP: If you want to use the new configuration format, the config file should be named \fB\fCconfig.rasi\fR\&.
.PP
2020-01-26 14:48:17 +00:00
\fBNOTE\fP: You can upgrade to the new configuration file format using \fB\fCrofi \-upgrade\-config\fR
.PP
The Xresources file expects options starting with \fB\fCrofi.\fR followed by its name. An example to set the number of lines:
.PP
.RS
.nf
2020-01-26 14:48:17 +00:00
rofi.lines: 10
2015-06-02 17:01:25 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
Command\-line options override settings from the Xresources file. The same option set as argument — prefixed with a '\-':
2020-01-26 14:48:17 +00:00
.PP
.RS
2020-01-26 14:48:17 +00:00
.nf
rofi \-lines 10
2020-01-26 14:48:17 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
2017-08-13 18:31:46 +00:00
To get a list of available options formatted as Xresources entries, run:
2020-01-26 14:48:17 +00:00
.PP
.RS
.nf
rofi \-dump\-xresources
2020-01-26 14:48:17 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
The configuration system supports the following types:
2020-01-26 14:48:17 +00:00
.IP \(bu 2
2017-08-13 18:31:46 +00:00
string
2020-01-26 14:48:17 +00:00
.IP \(bu 2
2017-08-13 18:31:46 +00:00
integer (signed and unsigned)
2020-01-26 14:48:17 +00:00
.IP \(bu 2
2017-08-13 18:31:46 +00:00
char
2020-01-26 14:48:17 +00:00
.IP \(bu 2
Boolean
2020-01-26 14:48:17 +00:00
.PP
Boolean options have a non\-default command\-line syntax. Example to enable option X:
.PP
.RS
.nf
\-X
2020-01-26 14:48:17 +00:00
2015-04-25 15:40:01 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
2016-12-14 08:26:12 +00:00
To disable option X:
2020-01-26 14:48:17 +00:00
.PP
.RS
.nf
\-no\-X
2020-01-26 14:48:17 +00:00
2015-04-25 15:40:01 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
Below is a list of the most important options:
2020-01-26 14:48:17 +00:00
.SS General
.PP
\fB\fC\-help\fR
.PP
The help option shows the full list of command\-line options and the current set values.
2020-01-26 14:48:17 +00:00
These include dynamic (run\-time generated) options.
.PP
\fB\fC\-version\fR
.PP
Show the \fBrofi\fP version and exit.
.PP
\fB\fC\-dump\-config\fR
.PP
Dump the current active configuration, in rasi format, to stdout and exit.
Information about the rasi format can be found in the \fBrofi\-theme(5)\fP manpage.
.PP
\fB\fC\-dump\-theme\fR
.PP
Dump the current active theme, in rasi format, to stdout and exit.
2020-01-26 14:48:17 +00:00
.PP
\fB\fC\-dump\-xresources\fR
.PP
Dump the current active configuration, in Xresources format, to stdout.
2020-01-26 14:48:17 +00:00
This does not validate all passed values (for example, colors).
.PP
\fB\fC\-rasi\-validate\fR \fIfilename\fP
.PP
Try to parse the file and 0 when succesful.
2020-01-26 14:48:17 +00:00
.PP
\fB\fC\-threads\fR \fInum\fP
.PP
Specify the number of threads \fBrofi\fP should use:
.IP \(bu 2
0: Autodetect the number of supported hardware threads.
.IP \(bu 2
2015-11-25 15:53:58 +00:00
1: Disable threading
2020-01-26 14:48:17 +00:00
.IP \(bu 2
2..N: Specify the maximum number of threads to use in the thread pool.
.PP
\fB\fC\-display\fR \fIdisplay\fP
.PP
The X server to contact. Default is \fB\fC$DISPLAY\fR\&.
2020-01-26 14:48:17 +00:00
.PP
\fB\fC\-dmenu\fR
.PP
Run \fBrofi\fP in dmenu mode. This allows for interactive scripts.
In \fB\fCdmenu\fR mode, \fBrofi\fP reads from STDIN, and output to STDOUT.
A simple example, displaying three pre\-defined options:
.PP
.RS
2015-04-08 01:50:57 +00:00
.nf
2020-01-26 14:48:17 +00:00
echo \-e "Option #1\\nOption #2\\nOption #3" | rofi \-dmenu
2015-04-08 01:50:57 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
2015-04-08 01:50:57 +00:00
Or get the options from a script:
2020-01-26 14:48:17 +00:00
.PP
.RS
2015-06-02 17:01:25 +00:00
.nf
2020-01-26 14:48:17 +00:00
\~/my\_script.sh | rofi \-dmenu
2015-06-02 17:01:25 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
\fB\fC\-show\fR \fImode\fP
.PP
Open \fBrofi\fP in a certain mode. Available modes are \fB\fCwindow\fR, \fB\fCrun\fR, \fB\fCdrun\fR, \fB\fCssh\fR, \fB\fCcombi\fR\&.
The special argument \fB\fCkeys\fR can be used to open a searchable list of supported key bindings
(see \fIKEY BINDINGS\fP)
.PP
To show the run\-dialog:
2020-01-26 14:48:17 +00:00
.PP
.RS
.nf
rofi \-show run
2020-01-26 14:48:17 +00:00
2014-10-20 18:29:26 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
\fB\fC\-modi\fR \fImode1,mode2\fP
2020-01-26 14:48:17 +00:00
.PP
Specify an ordered, comma\-separated list of modes to enable.
Enabled modes can be changed at runtime. Default key is \fB\fCCtrl+Tab\fR\&.
If no modes are specified, all configured modes will be enabled.
To only show the \fB\fCrun\fR and \fB\fCssh\fR launcher:
2020-01-26 14:48:17 +00:00
.PP
.RS
.nf
rofi \-modi "run,ssh" \-show run
2020-01-26 14:48:17 +00:00
2014-10-20 18:29:26 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
2020-01-26 14:48:17 +00:00
.PP
Custom modes can be added using the internal \fB\fCscript\fR mode. Each such mode has two parameters:
2020-01-26 14:48:17 +00:00
.PP
.RS
.nf
<name>:<script>
2020-01-26 14:48:17 +00:00
2015-06-02 17:01:25 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
Example: Have a mode called 'Workspaces' using the \fB\fCi3\_switch\_workspaces.sh\fR script:
2020-01-26 14:48:17 +00:00
.PP
.RS
2015-06-02 17:01:25 +00:00
.nf
2020-01-26 14:48:17 +00:00
rofi \-modi "window,run,ssh,Workspaces:i3\_switch\_workspaces.sh" \-show Workspaces
2014-10-20 18:29:26 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
Notes: The i3 window manager does not like commas in the command when specifying an exec command.
2020-01-26 14:48:17 +00:00
For that case '#' can be used as an separator.
.PP
\fB\fC\-case\-sensitive\fR
.PP
Start in case sensitive mode.
This option can be changed at run\-time using the \fB\fC\-kb\-toggle\-case\-sensitivity\fR key binding.
.PP
\fB\fC\-cycle\fR
.PP
Cycle through the result list. Default is 'true'.
.PP
\fB\fC\-filter\fR \fIfilter\fP
.PP
Filter the list by setting text in input bar to \fIfilter\fP
2020-01-26 14:48:17 +00:00
.PP
\fB\fC\-config\fR \fIfilename\fP
.PP
Load an alternative configuration file.
.PP
\fB\fC\-cache\-dir\fR \fIfilename\fP
.PP
Directory that is used to place temporary files, like history.
.PP
\fB\fC\-scroll\-method\fR \fImethod\fP
.PP
Select the scrolling method. 0: Per page, 1: continuous.
.PP
\fB\fC\-[no\-]show\-match\fR
.PP
Show the indicator that shows what part of the string is matched.
.PP
.RS
.nf
Default: *true*
2020-01-26 14:48:17 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
\fB\fC\-normalize\-match\fR
.PP
Normalize the string before matching, so o will match ö, and é matches e.
This is not a perfect implementation, but works.
For now it disabled highlighting of the matched part.
2020-01-26 14:48:17 +00:00
.PP
\fB\fC\-no\-lazy\-grab\fR
.PP
Disables lazy grab, this forces the keyboard being grabbed before gui is shown.
.PP
\fB\fC\-no\-plugins\fR
.PP
Disable plugin loading.
.PP
\fB\fC\-plugin\-path\fR \fIdirectory\fP
.PP
Specify the directory where \fBrofi\fP should look for plugins.
.PP
\fB\fC\-show\-icons\fR
.PP
Show application icons in \fB\fCdrun\fR and \fB\fCwindow\fR modes.
2020-01-26 14:48:17 +00:00
.PP
\fB\fC\-icon\-theme\fR
.PP
Specify icon theme to be used.
If not specified default theme from DE is used, \fIAdwaita\fP and \fIgnome\fP themes act as
fallback themes.
.PP
\fB\fC\-markup\fR
.PP
Use Pango markup to format output wherever possible.
.PP
\fB\fC\-normal\-window\fR
.PP
Make \fBrofi\fP react like a normal application window. Useful for scripts like Clerk that are basically an application.
2021-03-27 15:28:27 +00:00
.PP
\fB\fC\-[no\-]steal\-focus\fR
2021-03-27 15:28:27 +00:00
.PP
Make rofi steal focus on launch and restore close to window that held it when launched.
2021-03-27 15:28:27 +00:00
2020-01-26 14:48:17 +00:00
.SS Matching
.PP
\fB\fC\-matching\fR \fImethod\fP
.PP
Specify the matching algorithm used.
Current the following methods are supported.
.IP \(bu 2
\fBnormal\fP: match the int string
.IP \(bu 2
\fBregex\fP: match a regex input
.IP \(bu 2
\fBglob\fP: match a glob pattern
.IP \(bu 2
\fBfuzzy\fP: do a fuzzy match
.PP
Default: \fInormal\fP
.PP
Note: glob matching might be slow for larger lists
2020-01-26 14:48:17 +00:00
.PP
\fB\fC\-tokenize\fR
.PP
Tokenize the input.
.PP
\fB\fC\-drun\-categories\fR \fIcategory1\fP,\fIcategory2\fP
2020-01-26 14:48:17 +00:00
.PP
Only show desktop files that are present in the listed categories.
.PP
\fB\fC\-drun\-match\-fields\fR \fIfield1\fP,\fIfield2\fP,...
.PP
When using \fB\fCdrun\fR, match only with the specified Desktop entry fields.
2020-01-26 14:48:17 +00:00
The different fields are:
.IP \(bu 2
\fBname\fP: the application's name
.IP \(bu 2
\fBgeneric\fP: the application's generic name
.IP \(bu 2
\fBexec\fP: the application's executable
.IP \(bu 2
\fBcategories\fP: the application's categories
.IP \(bu 2
\fBcomment\fP: the application comment
.IP \(bu 2
.PP
\fBall\fP: all of the above
.PP
Default: \fIname,generic,exec,categories,keywords\fP
2020-01-26 14:48:17 +00:00
.PP
\fB\fC\-drun\-display\-format\fR
.PP
The format string for the \fB\fCdrun\fR dialog:
2020-01-26 14:48:17 +00:00
.IP \(bu 2
\fBname\fP: the application's name
.IP \(bu 2
\fBgeneric\fP: the application's generic name
.IP \(bu 2
\fBexec\fP: the application's executable
.IP \(bu 2
\fBcategories\fP: the application's categories
.IP \(bu 2
\fBcomment\fP: the application comment
.PP
Pango markup can be used to formatting the output.
.PP
.RS
.nf
2020-01-26 14:48:17 +00:00
Default: {name} [<span weight='light' size='small'><i>({generic})</i></span>]
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
Note: Only fields enabled in \fB\fC\-drun\-match\-fields\fR can be used in the format string.
.PP
\fB\fC\-[no\-]drun\-show\-actions\fR
2020-01-26 14:48:17 +00:00
.PP
Show actions present in the Desktop files.
.PP
.RS
.nf
Default: false
2020-01-26 14:48:17 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
\fB\fC\-window\-match\-fields\fR \fIfield1\fP,\fIfield2\fP,...
.PP
When using window mode, match only with the specified fields.
The different fields are:
.IP \(bu 2
\fBtitle\fP: window's title
.IP \(bu 2
\fBclass\fP: window's class
.IP \(bu 2
\fBrole\fP: window's role
.IP \(bu 2
\fBname\fP: window's name
.IP \(bu 2
\fBdesktop\fP: window's current desktop
.IP \(bu 2
.PP
\fBall\fP: all of the above
.PP
Default: \fIall\fP
2020-01-26 14:48:17 +00:00
.PP
\fB\fC\-matching\-negate\-char\fR \fIchar\fP
.PP
Set the character used to negate the query (i.e. if it does \fBnot\fP match the next keyword ).
Set to '\\x0' to disable.
.PP
.RS
.nf
2020-01-26 14:48:17 +00:00
Default: '\-'
2014-05-22 08:37:25 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.SS Layout
.PP
Most of the following options are \fBdeprecated\fP and should not be used. Please use the new theme format to customize
\fBrofi\fP\&. More information about the new format can be found in the \fBrofi\-theme(5)\fP manpage.
2020-01-26 14:48:17 +00:00
.PP
\fB\fC\-lines\fR
.PP
Maximum number of lines to show before scrolling.
.PP
.RS
.nf
rofi \-lines 25
2020-01-26 14:48:17 +00:00
2014-05-22 08:37:25 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
Default: \fI15\fP
.PP
\fB\fC\-columns\fR
2020-01-26 14:48:17 +00:00
.PP
Number of columns to show before scrolling.
.PP
.RS
.nf
rofi \-columns 2
2020-01-26 14:48:17 +00:00
2014-05-22 08:37:25 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
Default: \fI1\fP
.PP
\fB\fC\-width\fR [value]
.PP
Set width of menu. \fB\fC[value]\fR is specified in percentage.
2020-01-26 14:48:17 +00:00
.PP
.RS
.nf
rofi \-width 60
2020-01-26 14:48:17 +00:00
2014-08-14 19:16:42 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
2020-01-26 14:48:17 +00:00
.PP
If \fB\fC[value]\fR is larger then 100, size is set in pixels. Example to span a full\-HD monitor:
.PP
.RS
.nf
rofi \-width 1920
2020-01-26 14:48:17 +00:00
2014-08-14 19:16:42 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
If \fB\fC[value]\fR is negative, it tries to estimates a character width. To show 30 characters in a row:
2020-01-26 14:48:17 +00:00
.PP
.RS
.nf
rofi \-width \-30
2020-01-26 14:48:17 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
Character width is a rough estimate, and might not be correct, but should work for most monospaced fonts.
2020-01-26 14:48:17 +00:00
.PP
Default: \fI50\fP
.PP
\fB\fC\-location\fR
.PP
Specify where the window should be located. The numbers map to the following locations on screen:
.PP
.RS
.nf
2014-08-01 21:29:01 +00:00
1 2 3
8 0 4
7 6 5
2020-01-26 14:48:17 +00:00
2014-05-22 08:37:25 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
Default: \fI0\fP
.PP
\fB\fC\-fixed\-num\-lines\fR
.PP
Keep a fixed number of visible lines (See the \fB\fC\-lines\fR option.)
.PP
\fB\fC\-padding\fR
.PP
Define the inner margin of the window.
.PP
Default: \fI5\fP
.PP
\fB\fC\-fullscreen\fR
.PP
Use the full\-screen height and width.
.PP
\fB\fC\-sidebar\-mode\fR
2020-01-26 14:48:17 +00:00
.PP
Open in sidebar\-mode. In this mode a list of all enabled modes is shown at the bottom.
(See \fB\fC\-modi\fR option)
To show sidebar, use:
.PP
.RS
.nf
rofi \-show run \-sidebar\-mode \-lines 0
2020-01-26 14:48:17 +00:00
2015-06-02 17:01:25 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
Automatically select the entry the mouse is hovering over. This option is best combined with custom mouse bindings.
To utilize hover\-select and accept an entry in a single click, use:
.PP
.RS
.nf
rofi \-show run \-hover\-select \-me\-select\-entry '' -me\-accept\-entry MousePrimary
.fi
.RE
.PP
\fB\fC\-eh\fR \fInumber\fP
.PP
Set row height (in chars)
Default: \fI1\fP
2020-01-26 14:48:17 +00:00
.PP
\fB\fC\-auto\-select\fR
.PP
When one entry is left, automatically select it.
.PP
\fB\fC\-m\fR \fInum\fP
.PP
\fB\fC\-m\fR \fIname\fP
.PP
\fB\fC\-monitor\fR \fInum\fP
.PP
\fB\fC\-monitor\fR \fIname\fP
.PP
Select monitor to display \fBrofi\fP on.
It accepts as input: \fIprimary\fP (if primary output is set), the \fIxrandr\fP output name, or integer number (in order of
detection). Negative numbers are handled differently:
.IP \(bu 2
\fB\-1\fP: the currently focused monitor.
.IP \(bu 2
\fB\-2\fP: the currently focused window (that is, \fBrofi\fP will be displayed on top of the focused window).
.IP \(bu 2
\fB\-3\fP: Position at mouse (overrides the location setting to get normal context menu
behavior.)
.IP \(bu 2
\fB\-4\fP: the monitor with the focused window.
.IP \(bu 2
.PP
\fB\-5\fP: the monitor that shows the mouse pointer.
.PP
Default: \fI\-5\fP
2020-01-26 14:48:17 +00:00
.PP
See \fB\fCrofi \-h\fR output for the detected monitors, their position, and size.
.PP
\fB\fC\-theme\fR \fIfilename\fP
.PP
Path to the new theme file format. This overrides the old theme settings.
.PP
\fB\fC\-theme\-str\fR \fIstring\fP
.PP
Allow theme parts to be specified on the command line as an override.
.PP
2017-08-13 18:31:46 +00:00
For example:
2020-01-26 14:48:17 +00:00
.PP
.RS
2017-01-18 17:12:54 +00:00
.nf
2020-01-26 14:48:17 +00:00
rofi \-theme\-str '#window { fullscreen: true; }'
2017-01-18 17:12:54 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
2020-01-26 14:48:17 +00:00
.PP
This option can be specified multiple times.
.PP
\fB\fC\-dpi\fR \fInumber\fP
.PP
Override the default DPI setting.
.IP \(bu 2
2020-01-26 14:48:17 +00:00
If set to \fB\fC0\fR, it tries to auto\-detect based on X11 screen size (similar to i3 and GTK).
.IP \(bu 2
If set to \fB\fC1\fR, it tries to auto\-detect based on the size of the monitor that \fBrofi\fP is displayed on (similar to latest Qt 5).
2020-03-29 10:58:28 +00:00
.PP
\fB\fC\-selected\-row\fR \fIselected row\fP
.PP
Select a certain row.
.PP
Default: \fI0\fP
2020-01-26 14:48:17 +00:00
.SS PATTERN setting
.PP
\fB\fC\-terminal\fR
.PP
Specify which terminal to start.
.PP
.RS
.nf
rofi \-terminal xterm
2020-01-26 14:48:17 +00:00
2015-06-02 17:01:25 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
Pattern: \fI{terminal}\fP
.PP
2020-01-26 14:48:17 +00:00
Default: \fIx\-terminal\-emulator\fP
.PP
\fB\fC\-ssh\-client\fR \fIclient\fP
.PP
Override the used \fB\fCssh\fR client.
2020-01-26 14:48:17 +00:00
.PP
Pattern: \fI{ssh\-client}\fP
.PP
2020-01-26 14:48:17 +00:00
Default: \fIssh\fP
.SS SSH settings
.PP
\fB\fC\-ssh\-command\fR \fIcmd\fP
.PP
Set the command to execute when starting a ssh session.
The pattern \fI{host}\fP is replaced by the selected ssh entry.
.PP
Pattern: \fI{ssh\-client}\fP
.PP
2020-01-26 14:48:17 +00:00
Default: \fI{terminal} \-e {ssh\-client} {host}\fP
.PP
\fB\fC\-parse\-hosts\fR
.PP
Parse the \fB\fC/etc/hosts\fR file for entries.
.PP
Default: \fIdisabled\fP
.PP
\fB\fC\-parse\-known\-hosts\fR
\fB\fC\-no\-parse\-known\-hosts\fR
.PP
Parse the \fB\fC\~/.ssh/known\_hosts\fR file for entries.
.PP
Default: \fIenabled\fP
2020-01-26 14:48:17 +00:00
.SS Run settings
.PP
\fB\fC\-run\-command\fR \fIcmd\fP
.PP
Set command (\fI{cmd}\fP) to execute when running an application.
See \fIPATTERN\fP\&.
.PP
Default: \fI{cmd}\fP
.PP
\fB\fC\-run\-shell\-command\fR \fIcmd\fP
.PP
Set command to execute when running an application in a shell.
See \fIPATTERN\fP\&.
.PP
Default: \fI{terminal} \-e {cmd}\fP
.PP
\fB\fC\-run\-list\-command\fR \fIcmd\fP
.PP
If set, use an external tool to generate list of executable commands. Uses \fB\fCrun\-command\fR\&.
.PP
Default: \fI{cmd}\fP
.SS Window switcher settings
.PP
\fB\fC\-window\-format\fR \fIformat\fP
.PP
Format what is being displayed for windows.
.PP
\fIformat\fP: {field[:len]}
.PP
\fIfield\fP:
.IP \(bu 2
\fBw\fP: desktop name
.IP \(bu 2
\fBt\fP: title of window
.IP \(bu 2
\fBn\fP: name
.IP \(bu 2
\fBr\fP: role
.IP \(bu 2
\fBc\fP: class
.PP
\fIlen\fP: maximum field length (0 for auto\-size). If length and window \fIwidth\fP are negative, field length is \fIwidth \- len\fP\&.
if length is positive, the entry will be truncated or padded to fill that length.
.PP
default: {w} {c} {t}
.PP
\fB\fC\-window\-command\fR \fIcmd\fP
.PP
Set command to execute on selected window for a alt action (\fB\fC\-kb\-accept\-alt\fR).
2020-01-26 14:48:17 +00:00
See \fIPATTERN\fP\&.
.PP
Default: \fI"wmctrl \-i \-R {window}"\fP
2020-04-29 10:59:49 +00:00
.PP
\fB\fC\-window\-thumbnail\fR
.PP
Show window thumbnail (if available) as icon in the window switcher.
2020-01-26 14:48:17 +00:00
.SS Combi settings
.PP
\fB\fC\-combi\-modi\fR \fImode1\fP,\fImode2\fP
2020-01-26 14:48:17 +00:00
.PP
The modi to combine in combi mode.
For syntax to \fB\fC\-combi\-modi\fR, see \fB\fC\-modi\fR\&.
2020-01-26 14:48:17 +00:00
To get one merge view, of \fB\fCwindow\fR,\fB\fCrun\fR, and \fB\fCssh\fR:
.PP
.RS
.nf
rofi \-show combi \-combi\-modi "window,run,ssh" \-modi combi
2020-01-26 14:48:17 +00:00
2015-04-01 12:49:27 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
\fBNOTE\fP: The i3 window manager does not like commas in the command when specifying an exec command.
2020-01-26 14:48:17 +00:00
For that case '#' can be used as a separator.
.SS History and Sorting
.PP
\fB\fC\-disable\-history\fR
\fB\fC\-no\-disable\-history\fR (re\-enable history)
.PP
2014-06-05 19:55:47 +00:00
Disable history
2020-01-26 14:48:17 +00:00
.PP
\fB\fC\-sort\fR to enable
\fB\fC\-no\-sort\fR to disable
.PP
Enable, disable sorting.
This setting can be changed at runtime (see \fB\fC\-kb\-toggle\-sort\fR).
.PP
\fB\fC\-sorting\-method\fR 'method' to specify the sorting method.
2020-01-26 14:48:17 +00:00
.PP
There are 2 sorting method:
2020-01-26 14:48:17 +00:00
.IP \(bu 2
levenshtein (Default)
2020-01-26 14:48:17 +00:00
.IP \(bu 2
fzf sorting.
.PP
\fB\fC\-max\-history\-size\fR \fInumber\fP
.PP
Maximum number of entries to store in history. Defaults to 25. (WARNING: can cause slowdowns when set to high)
2020-01-26 14:48:17 +00:00
.SS Dmenu specific
.PP
\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:
2020-01-26 14:48:17 +00:00
.PP
.RS
.nf
2020-01-26 14:48:17 +00:00
echo "a|b|c|d|e" | rofi \-sep '|' \-dmenu
2015-06-02 17:01:25 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
\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.
2020-01-26 14:48:17 +00:00
.PP
.RS
2015-06-02 17:01:25 +00:00
.nf
echo "a|b|c|d|e" | rofi \-sep '|' \-dmenu \-p "monkey"
2014-11-02 11:58:57 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
Default: \fIdmenu\fP
.PP
\fB\fC\-l\fR \fInumber of lines to show\fP
.PP
Maximum number of lines the menu may show before scrolling.
.PP
.RS
.nf
rofi \-lines 25
2020-01-26 14:48:17 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
Default: \fI15\fP
.PP
\fB\fC\-i\fR
.PP
Makes \fB\fCdmenu\fR searches case\-insensitive
2020-01-26 14:48:17 +00:00
.PP
\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:
.IP \(bu 2
A single row: '5'
.IP \(bu 2
A range of (last 3) rows: '\-3:'
.IP \(bu 2
4 rows starting from row 7: '7:11' (or in legacy notation: '7\-10')
.IP \(bu 2
A set of rows: '2,0,\-9'
.IP \(bu 2
Or any combination: '5,\-3:,7:11,2,0,\-9'
.PP
\fB\fC\-u\fR \fIX\fP
.PP
Urgent row, mark \fIX\fP as urgent. See \fB\fC\-a\fR option for details.
.PP
\fB\fC\-only\-match\fR
.PP
Only return a selected item, do not allow custom entry.
This mode always returns an entry. It will not return if no matching entry is
selected.
2020-01-26 14:48:17 +00:00
.PP
\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
.PP
2017-08-13 18:31:46 +00:00
Allows the output of dmenu to be customized (N is the total number of input entries):
2020-01-26 14:48:17 +00:00
.IP \(bu 2
\&'s' selected string
.IP \(bu 2
\&'i' index (0 \-\& (N\-\&1))
.IP \(bu 2
\&'d' index (1 \-\& N)
.IP \(bu 2
\&'q' quote string
.IP \(bu 2
\&'p' Selected string stripped from Pango markup (Needs to be a valid string)
2020-01-26 14:48:17 +00:00
.IP \(bu 2
\&'f' filter string (user input)
.IP \(bu 2
\&'F' quoted filter string (user input)
.PP
Default: 's'
.PP
\fB\fC\-select\fR \fIstring\fP
.PP
2015-05-24 07:20:01 +00:00
Select first line that matches the given string
2020-01-26 14:48:17 +00:00
.PP
\fB\fC\-mesg\fR \fIstring\fP
.PP
Add a message line below the filter entry box. Supports Pango markup.
2020-01-26 14:48:17 +00:00
For more information on supported markup see here
\[la]https://developer.gnome.org/pygtk/stable/pango-markup-language.html\[ra]
2020-01-26 14:48:17 +00:00
.PP
\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.
.PP
\fB\fC\-input\fR \fIfile\fP
.PP
Reads from \fIfile\fP instead of stdin.
.PP
\fB\fC\-password\fR
.PP
Hide the input text. This should not be considered secure!
.PP
\fB\fC\-markup\-rows\fR
.PP
Tell \fBrofi\fP that DMenu input is Pango markup encoded, and should be rendered.
2020-01-26 14:48:17 +00:00
See here
\[la]https://developer.gnome.org/pygtk/stable/pango-markup-language.html\[ra] for details about Pango markup.
2020-01-26 14:48:17 +00:00
.PP
\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
.PP
Force \fBrofi\fP mode to first read all data from stdin before showing the selection window. This is original dmenu behavior.
2020-01-26 14:48:17 +00:00
.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\&.
.PP
\fB\fC\-async\-pre\-read\fR \fInumber\fP
.PP
Reads the first \fInumber\fP entries blocking, then switches to async mode.
This makes it feel more 'snappy'.
2020-01-26 14:48:17 +00:00
.PP
\fIdefault\fP: 25
.PP
\fB\fC\-window\-title\fR \fItitle\fP
.PP
Set name used for the window title. Will be shown as Rofi \- \fItitle\fP
.PP
\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
.PP
Set ellipsize mode to start. So end of string is visible.
2020-01-26 14:48:17 +00:00
.SS Message dialog
.PP
\fB\fC\-e\fR \fImessage\fP
.PP
Pops up a message dialog (used internally for showing errors) with \fImessage\fP\&.
Message can be multi\-line.
2020-01-26 14:48:17 +00:00
.SS Other
.PP
\fB\fC\-drun\-use\-desktop\-cache\fR
.PP
Build and use a cache with the content of desktop files. Usable for systems with slow hard drives.
2020-01-26 14:48:17 +00:00
.PP
\fB\fC\-drun\-reload\-desktop\-cache\fR
.PP
If \fB\fCdrun\-use\-desktop\-cache\fR is enabled, rebuild a cache with the content of desktop files.
2020-01-26 14:48:17 +00:00
.PP
\fB\fC\-pid\fR \fIpath\fP
.PP
Make \fBrofi\fP create a pid file and check this on startup. The pid file prevents multiple \fBrofi\fP instances from running simultaneously. This is useful when running \fBrofi\fP from a key\-binding daemon.
.PP
\fB\fC\-fake\-transparency\fR
.PP
Enable fake transparency. This only works with transparent background color in the theme.
.PP
\fB\fC\-fake\-background\fR
.PP
Select what to use as background for fake transparency. This can be 'background', 'screenshot' or a path to an image
file (currently only supports png).
.PP
\fB\fC\-display\-{mode}\fR \fIstring\fP
.PP
Set the name to use for mode. This is used as prompt and in combi\-browser.
.PP
\fB\fC\-click\-to\-exit\fR
\fB\fC\-no\-click\-to\-exit\fR
.PP
Click the mouse outside of the \fBrofi\fP window to exit.
.PP
Default: \fIenabled\fP
.SS Debug
.PP
\fB\fC\-no\-config\fR
.PP
Disable parsing of configuration. This runs rofi in \fIstock\fP mode.
.PP
\fB\fC\-no\-plugins\fR
.PP
Disables the loading of plugins.
.PP
To get a trace with (lots of) debug information, set the following environment variable when executing \fBrofi\fP:
.PP
.RS
.nf
2020-01-26 14:48:17 +00:00
G\_MESSAGES\_DEBUG=all
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
2017-08-13 18:31:46 +00:00
The trace can be filtered by only outputting the relevant domains, for example:
2020-01-26 14:48:17 +00:00
.PP
.RS
.nf
2020-01-26 14:48:17 +00:00
G\_MESSAGES\_DEBUG=Dialogs.DRun
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
For more information on debugging, see the wiki
\[la]https://github.com/DaveDavenport/rofi/wiki/Debugging%20Rofi\[ra]
2020-01-26 14:48:17 +00:00
.SH PATTERN
.PP
To launch commands (for example, when using the ssh launcher), the user can enter the used command\-line. The following keys can be used that will be replaced at runtime:
.IP \(bu 2
\fB\fC{host}\fR: the host to connect to
.IP \(bu 2
\fB\fC{terminal}\fR: the configured terminal (see \-terminal\-emulator)
.IP \(bu 2
\fB\fC{ssh\-client}\fR: the configured ssh client (see \-ssh\-client)
.IP \(bu 2
\fB\fC{cmd}\fR: the command to execute
.IP \(bu 2
\fB\fC{window}\fR: the window ID of the selected window (in \fB\fCwindow\-command\fR)
.SH DMENU 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\&.
.PP
.RS
.nf
ln \-s /usr/bin/rofi /usr/bin/dmenu
2020-01-26 14:48:17 +00:00
2015-06-02 17:01:25 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.SH THEMING
.PP
The theme format below describes the old (pre version 1.4) theme format. Please see rofi\-theme(5) manpage for an updated
manual.
.PP
The theme setup allows you to specify colors per state, similar to \fBi3\fP
Currently 3 states exist:
.IP \(bu 2
\fBnormal\fP: normal row
.IP \(bu 2
\fBurgent\fP: highlighted row (urgent)
.IP \(bu 2
\fBactive\fP: highlighted row (active)
.PP
2017-08-13 18:31:46 +00:00
For each state, the following 5 colors must be set:
2020-01-26 14:48:17 +00:00
.IP \(bu 2
\fBbg\fP: background color row
.IP \(bu 2
\fBfg\fP: text color
.IP \(bu 2
\fBbgalt\fP: background color alternating row
.IP \(bu 2
\fBhlfg\fP: foreground color selected row
.IP \(bu 2
\fBhlbg\fP: background color selected row
.PP
The window background and border color should be specified separately. The key \fB\fCcolor\-window\fR contains
a tuple \fB\fCbackground,border,separator\fR\&.
An example \fB\fCXresources\fR file:
2020-01-26 14:48:17 +00:00
.PP
.RS
.nf
2020-01-26 14:48:17 +00:00
! State: 'bg', 'fg', 'bgalt', 'hlbg', 'hlfg'
rofi.color\-normal: #fdf6e3, #002b36, #eee8d5, #586e75, #eee8d5
rofi.color\-urgent: #fdf6e3, #dc322f, #eee8d5, #dc322f, #fdf6e3
rofi.color\-active: #fdf6e3, #268bd2, #eee8d5, #268bd2, #fdf6e3
2020-01-26 14:48:17 +00:00
! 'background', 'border', 'separator'
rofi.color\-window: #fdf6e3, #002b36, #002b36
2015-07-07 20:10:40 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
Same settings can also be specified on the command\-line:
2020-01-26 14:48:17 +00:00
.PP
.RS
.nf
rofi \-color\-normal "#fdf6e3,#002b36,#eee8d5,#586e75,#eee8d5"
2020-01-26 14:48:17 +00:00
2015-07-07 20:10:40 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
2020-01-26 14:48:17 +00:00
.SH COLORS
.PP
RGB colors can be specified by either their X11 name or hexadecimal notation.
For example:
.PP
.RS
.nf
white
2020-01-26 14:48:17 +00:00
2016-12-14 08:26:12 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
2017-08-13 18:31:46 +00:00
Or:
2020-01-26 14:48:17 +00:00
.PP
.RS
.nf
#FFFFFF
2020-01-26 14:48:17 +00:00
2016-12-14 08:26:12 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
ARGB colors are also supported. These can be used to create a transparent window if (1) your Xserver supports TrueColor, and (2) you are running a composite manager.
For example:
argb:FF444444
.PP
2017-08-13 18:31:46 +00:00
Or:
2020-01-26 14:48:17 +00:00
.PP
.RS
.nf
#FF444444
2020-01-26 14:48:17 +00:00
2016-12-14 08:26:12 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
The first two fields specify the alpha level. This determines the amount of transparency (00 everything, FF nothing). The other fields represent the actual color, in hex.
.PP
Transparency can be used within \fBrofi\fP, for example if the selected background color is 50% transparent, the background color
of the window will be visible through it.
.SH KEY BINDINGS
.PP
\fBrofi\fP has the following key bindings:
.IP \(bu 2
\fB\fCCtrl\-v, Insert\fR: Paste from clipboard
.IP \(bu 2
\fB\fCCtrl\-Shift\-v, Shift\-Insert\fR: Paste primary selection
.IP \(bu 2
\fB\fCCtrl\-u\fR: Clear the line
.IP \(bu 2
\fB\fCCtrl\-a\fR: Beginning of line
.IP \(bu 2
\fB\fCCtrl\-e\fR: End of line
.IP \(bu 2
\fB\fCCtrl\-f, Right\fR: Forward one character
.IP \(bu 2
\fB\fCAlt\-f, Ctrl\-Right\fR: Forward one word
.IP \(bu 2
\fB\fCCtrl\-b, Left\fR: Back one character
.IP \(bu 2
\fB\fCAlt\-b, Ctrl\-Left\fR: Back one word
.IP \(bu 2
\fB\fCCtrl\-d, Delete\fR: Delete character
.IP \(bu 2
\fB\fCCtrl\-Alt\-d\fR: Delete word
.IP \(bu 2
\fB\fCCtrl\-h, Backspace, Shift\-Backspace\fR: Backspace (delete previous character)
.IP \(bu 2
\fB\fCCtrl\-Alt\-h\fR: Delete previous word
.IP \(bu 2
\fB\fCCtrl\-j,Ctrl\-m,Enter\fR: Accept entry
.IP \(bu 2
\fB\fCCtrl\-n,Down\fR: Select next entry
.IP \(bu 2
\fB\fCCtrl\-p,Up\fR: Select previous entry
.IP \(bu 2
\fB\fCPage Up\fR: Go to previous page
.IP \(bu 2
\fB\fCPage Down\fR: Go to next page
.IP \(bu 2
\fB\fCCtrl\-Page Up\fR: Go to previous column
.IP \(bu 2
\fB\fCCtrl\-Page Down\fR: Go to next column
.IP \(bu 2
\fB\fCCtrl\-Enter\fR: Use entered text as a command (in \fB\fCssh/run modi\fR)
.IP \(bu 2
\fB\fCShift\-Enter\fR: Launch the application in a terminal (in run mode)
.IP \(bu 2
\fB\fCShift\-Enter\fR: Return the selected entry and move to the next item while keeping \fBrofi\fP open. (in dmenu)
.IP \(bu 2
\fB\fCShift\-Right\fR: Switch to the next mode. The list can be customized with the \fB\fC\-switchers\fR argument.
.IP \(bu 2
\fB\fCShift\-Left\fR: Switch to the previous mode. The list can be customized with the \fB\fC\-switchers\fR argument.
.IP \(bu 2
\fB\fCCtrl\-Tab\fR: Switch to the next mode. The list can be customized with the \fB\fC\-switchers\fR argument.
.IP \(bu 2
\fB\fCCtrl\-Shift\-Tab\fR: Switch to the previous mode. The list can be customized with the \fB\fC\-switchers\fR argument.
.IP \(bu 2
\fB\fCCtrl\-space\fR: Set selected item as input text.
.IP \(bu 2
\fB\fCShift\-Del\fR: Delete entry from history.
.IP \(bu 2
\fB\fCgrave\fR: Toggle case sensitivity.
.IP \(bu 2
\fB\fCAlt\-grave\fR: Toggle sorting.
.IP \(bu 2
\fB\fCAlt\-Shift\-S\fR: Take a screenshot and store it in the Pictures directory.
.PP
To get a full list of key bindings on the commandline, see \fB\fCrofi \-h\fR\&.
The options starting with \fB\fC\-kb\fR are keybindings.
Key bindings can be modified using the configuration systems.
To get a searchable list of key bindings, run \fB\fCrofi \-show keys\fR\&.
.PP
A key binding starting with \fB\fC!\fR will act when all keys have been released.
.SH Available Modi
.SS window
2020-01-26 14:48:17 +00:00
.PP
Show a list of all the windows and allow switching between them.
Pressing the \fB\fCdelete\-entry\fR binding (\fB\fCshift\-delete\fR) will close the window.
Pressing the \fB\fCaccept\-custom\fR binding (\fB\fCcontrol\-enter\fR or \fB\fCshift\-enter\fR) will run a command on the window.
(See option \fB\fCwindow\-command\fR );
.SS windowcd
2020-01-26 14:48:17 +00:00
.PP
Shows a list of the windows on the current desktop and allows switching between them.
Pressing the \fB\fCdelete\-entry\fR binding (\fB\fCshift\-delete\fR) will kill the window.
Pressing the \fB\fCaccept\-custom\fR binding (\fB\fCcontrol\-enter\fR or \fB\fCshift\-enter\fR) will run a command on the window.
(See option \fB\fCwindow\-command\fR );
.PP
If there is no match, it will try to launch the input.
.SS run
2020-01-26 14:48:17 +00:00
.PP
Shows a list of executables in \fB\fC$PATH\fR and can launch them (optional in a terminal).
2020-01-26 14:48:17 +00:00
Pressing the \fB\fCdelete\-entry\fR binding (\fB\fCshift\-delete\fR) will remove this entry from the run history.
Pressing the \fB\fCaccept\-custom\fR binding (\fB\fCcontrol\-enter\fR or \fB\fCshift\-enter\fR) will run the command in a terminal.
.SS drun
2020-01-26 14:48:17 +00:00
.PP
Same as the \fBrun\fP launches, but the list is created from the installed desktop files. It automatically launches them
in a terminal if specified in the Desktop File.
Pressing the \fB\fCdelete\-entry\fR binding (\fB\fCshift\-delete\fR) will remove this entry from the run history.
Pressing the \fB\fCaccept\-custom\fR binding (\fB\fCcontrol\-enter\fR or \fB\fCshift\-enter\fR) will run the command in a terminal.
2020-01-26 14:48:17 +00:00
.SS ssh
2020-01-26 14:48:17 +00:00
.PP
Shows a list of SSH targets based on your \fB\fCssh\fR config file, and allows to quickly \fB\fCssh\fR into them.
2020-01-26 14:48:17 +00:00
.SS keys
2020-01-26 14:48:17 +00:00
.PP
Shows a searchable list of key bindings.
.SS script
2020-01-26 14:48:17 +00:00
.PP
Allows custom scripted Modi to be added.
.SS combi
.PP
Combines multiple modi in one list. Specify which modi are included with the \fB\fC\-combi\-modi\fR option.
.PP
When using the combi mode, a \fI!bang\fP can be used to filter the results by modi.
All modi that match the bang as a prefix are included.
For example, say you have specified \fB\fC\-combi\-modi run,window,windowcd\fR\&. If your
query begins with the bang \fB\fC!w\fR, only results from the \fB\fCwindow\fR and \fB\fCwindowcd\fR
modi are shown, even if the rest of the input text would match results from \fB\fCrun\fR\&.
.PP
If no match, the input is handled by the first combined modi.
2020-01-26 14:48:17 +00:00
.SH FAQ
.SS The text in the window switcher is not nicely aligned.
2020-01-26 14:48:17 +00:00
.PP
Try using a mono\-space font.
.SS The window is completely black.
.PP
Check quotes used on the command\-line: you might have used \fB\fC\fR ("smart quotes") instead of \fB\fC"\fR ("machine quotes").
2020-01-26 14:48:17 +00:00
.SS What does the icon in the top right show?
.PP
2016-04-03 12:56:23 +00:00
The indicator shows:
2020-01-26 14:48:17 +00:00
.PP
.RS
.nf
` ` Case insensitive and no sorting.
`\-` Case sensitivity enabled, no sorting.
2016-04-03 12:56:23 +00:00
`+` Case insensitive and Sorting enabled
`±` Sorting and Case sensitivity enabled"
2020-01-26 14:48:17 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.SH EXAMPLES
.PP
Some basic usage examples of \fBrofi\fP:
.PP
2016-12-21 08:42:04 +00:00
Show the run dialog:
2020-01-26 14:48:17 +00:00
.PP
.RS
.nf
rofi \-modi run \-show run
2020-01-26 14:48:17 +00:00
2016-12-21 08:42:04 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
Show the run dialog, and allow switching to Desktop File run dialog (\fB\fCdrun\fR):
2020-01-26 14:48:17 +00:00
.PP
.RS
.nf
rofi \-modi run,drun \-show run
2020-01-26 14:48:17 +00:00
2016-12-21 08:42:04 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
Combine the run and Desktop File run dialog (\fB\fCdrun\fR):
2020-01-26 14:48:17 +00:00
.PP
.RS
.nf
rofi \-modi combi \-show combi \-combi\-modi run,drun
2020-01-26 14:48:17 +00:00
2016-12-21 08:42:04 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
Combine the run and Desktop File run dialog (\fB\fCdrun\fR), and allow switching to window switcher:
2020-01-26 14:48:17 +00:00
.PP
.RS
.nf
rofi \-modi combi,window \-show combi \-combi\-modi run,drun
2020-01-26 14:48:17 +00:00
2016-12-21 08:42:04 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
Run \fBrofi\fP full monitor width at the top of the monitor like a dropdown menu:
.PP
.RS
2020-01-26 14:48:17 +00:00
.nf
rofi \-show run \-width 100 \-location 1 \-lines 5 \-bw 2 \-yoffset \-2
2020-01-26 14:48:17 +00:00
2016-12-21 08:42:04 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
2017-08-13 18:31:46 +00:00
Pop up a text message claiming that this is the end:
2020-01-26 14:48:17 +00:00
.PP
.RS
.nf
rofi \-e "This is the end"
2020-01-26 14:48:17 +00:00
2016-12-21 08:42:04 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
2017-08-13 18:31:46 +00:00
Pop up a text message in red, bold font claiming that this is still the end:
2020-01-26 14:48:17 +00:00
.PP
.RS
2016-12-21 08:42:04 +00:00
.nf
2020-01-26 14:48:17 +00:00
rofi \-e "<span color='red'><b>This is still the end</b></span>" \-markup
2016-12-21 08:42:04 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
2017-08-13 18:31:46 +00:00
Show all key bindings:
2020-01-26 14:48:17 +00:00
.PP
.RS
.nf
rofi \-show keys
2020-01-26 14:48:17 +00:00
2016-12-21 08:42:04 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.PP
Use \fB\fCqalc\fR to get a simple calculator in \fBrofi\fP:
2020-01-26 14:48:17 +00:00
.PP
.RS
.nf
rofi \-show calc \-modi "calc:qalc +u8 \-nocurrencies"
2020-01-26 14:48:17 +00:00
2016-12-21 08:42:04 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.SH i3
.PP
In i3
\[la]http://i3wm.org/\[ra] you want to bind \fBrofi\fP to be launched on key release. Otherwise, it cannot grab the keyboard.
See also the i3 manual
\[la]http://i3wm.org/docs/userguide.html\[ra]:
2020-01-26 14:48:17 +00:00
.PP
Some tools (such as \fB\fCimport\fR or \fB\fCxdotool\fR) might be unable to run upon a KeyPress event, because the keyboard/pointer is
2020-01-26 14:48:17 +00:00
still grabbed. For these situations, the \fB\fC\-\-release\fR flag can be used, as it will execute the command after the keys have
been released.
.SH LICENSE
.PP
.RS
.nf
2015-04-22 19:03:02 +00:00
MIT/X11
2015-06-02 17:01:25 +00:00
2015-04-22 19:03:02 +00:00
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
2015-06-02 17:01:25 +00:00
2015-04-22 19:03:02 +00:00
The above copyright notice and this permission notice shall be
2020-01-26 14:48:17 +00:00
included in all copies or substantial portions of the Software.
2015-06-02 17:01:25 +00:00
2015-04-22 19:03:02 +00:00
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2020-01-26 14:48:17 +00:00
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2015-04-22 19:03:02 +00:00
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2020-01-26 14:48:17 +00:00
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2015-06-02 17:01:25 +00:00
.fi
2020-01-26 14:48:17 +00:00
.RE
.SH WEBSITE
.PP
\fBrofi\fP website can be found here
\[la]https://davedavenport.github.io/rofi/\[ra]
.SH SUPPORT
.PP
\fBrofi\fP support can be obtained here
\[la]irc://irc.freenode.net/#rofi\[ra] (#rofi on irc.freenode.net), or via the
forum
\[la]https://reddit.com/r/qtools//\[ra]
.SH DEBUGGING
.PP
Please see this
\[la]https://github.com/DaveDavenport/rofi/wiki/Debugging Rofi\[ra] wiki entry.
.SH ISSUE TRACKER
.PP
The \fBrofi\fP issue tracker can be found here
2020-01-26 14:48:17 +00:00
\[la]https://github.com/DaveDavenport/rofi/issues\[ra]
.PP
When creating an issue, please read this
\[la]https://github.com/DaveDavenport/rofi/blob/master/.github/CONTRIBUTING.md\[ra]
first.
.SH SEE ALSO
.PP
\fBrofi\-sensible\-terminal(1)\fP, \fBdmenu(1)\fP, \fBrofi\-theme(5)\fP, \fBrofi\-script(5)\fP, \fBrofi\-theme\-selector(1)\fP
2020-01-26 14:48:17 +00:00
.SH AUTHOR.IP \(bu 2
Qball Cow
\[la]qball@gmpclient.org\[ra]
.IP \(bu 2
Rasmus Steinke
\[la]rasi@xssn.at\[ra]
.IP \(bu 2
Quentin Glidic
\[la]sardemff7+rofi@sardemff7.net\[ra]
2020-01-26 14:48:17 +00:00
.PP
Original code based on work by: Sean Pringle
\[la]sean.pringle@gmail.com\[ra]
2020-01-26 14:48:17 +00:00
.PP
For a full list of authors, check the \fB\fCAUTHORS\fR file.