mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
1593 lines
32 KiB
Groff
1593 lines
32 KiB
Groff
.nh
|
|
.TH ROFI 1 rofi
|
|
.SH NAME
|
|
.PP
|
|
\fBrofi\fP - A window switcher, application launcher, ssh dialog, dmenu
|
|
replacement and more
|
|
|
|
.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 \fBssh\fR\&. There are different \fImodes\fP for different types of actions. \fBrofi\fP
|
|
is a standalone application and should not be integrated into scripts. For
|
|
integration into scripts it has a special mode that functions as a (drop-in)
|
|
replacement for \fBdmenu(1)\fP\&. See emulating dmenu below.
|
|
|
|
.SS Running rofi
|
|
.PP
|
|
To launch \fBrofi\fP directly in a certain mode, specify a mode with \fBrofi -show
|
|
<mode>\fR\&. To show the \fBdrun\fR dialog:
|
|
|
|
.EX
|
|
rofi -show drun
|
|
|
|
.EE
|
|
|
|
.PP
|
|
A useful setup in minimalistic window managers is to combine \fBdrun\fR, \fBrun\fR
|
|
with \fBwindow\fR mode:
|
|
|
|
.EX
|
|
rofi -show combi -modes combi -combi-modes "window,drun,run"
|
|
|
|
.EE
|
|
|
|
.PP
|
|
In this setup it first list all open applications, then all installed
|
|
applications. So if you type firefox and hit return, it will switch to the
|
|
running firefox, or launch it when it is not running.
|
|
|
|
.SS Emulating dmenu
|
|
.PP
|
|
\fBrofi\fP can emulate \fBdmenu(1)\fP (a dynamic menu for X11) when launched with
|
|
the \fB-dmenu\fR flag.
|
|
|
|
.PP
|
|
For more information see \fBrofi-dmenu(5)\fP\&.
|
|
|
|
.SS Display Error message
|
|
.PP
|
|
\fBrofi\fP error dialog can also be called from the command line.
|
|
|
|
.EX
|
|
rofi -e "my message"
|
|
|
|
.EE
|
|
|
|
.PP
|
|
Markup support can be enabled, see CONFIGURATION options.
|
|
|
|
.SH CONFIGURATION
|
|
.PP
|
|
There are currently three methods of setting configuration options (evaluated
|
|
in order below):
|
|
|
|
.RS
|
|
.IP \(bu 2
|
|
System configuration file (for example \fB/etc/rofi.rasi\fR). It first checks
|
|
\fBXDG_CONFIG_DIRS\fR, and then \fBSYSCONFDIR\fR (that is passed at compile time).
|
|
It loads the first config file it finds, it does not merge multiple system
|
|
configuration files.
|
|
.IP \(bu 2
|
|
Rasi theme file: The new \fItheme\fP format can be used to set configuration
|
|
values.
|
|
.IP \(bu 2
|
|
Command-line options: Arguments passed to \fBrofi\fP\&.
|
|
|
|
.RE
|
|
|
|
.PP
|
|
To get a template config file, run: \fBrofi -dump-config > config.rasi\fR
|
|
|
|
.PP
|
|
This will contain (commented) all current configuration options, modified
|
|
options are uncommented.
|
|
|
|
.PP
|
|
To get a template config file that sets the icon-theme run: \fBrofi -icon-theme
|
|
hicolor -dump-config\fR\&.
|
|
|
|
.PP
|
|
It is \fBstrongly\fP recommended to use this as a starting point for your
|
|
configuration.
|
|
|
|
.PP
|
|
An empty configuration section in the config file looks like:
|
|
|
|
.EX
|
|
configuration {
|
|
// set config options here
|
|
}
|
|
|
|
.EE
|
|
|
|
.PP
|
|
Most of the configuration options mentioned below (beside options like \fB-show\fR,
|
|
\fB-dump-config\fR that apply to a single run) can be set here.
|
|
|
|
.PP
|
|
For example to set the dpi value to 72:
|
|
|
|
.EX
|
|
configuration {
|
|
dpi: 72;
|
|
}
|
|
|
|
.EE
|
|
|
|
.PP
|
|
The configuration system supports the following types:
|
|
|
|
.RS
|
|
.IP \(bu 2
|
|
string
|
|
.IP \(bu 2
|
|
integer (signed and unsigned)
|
|
.IP \(bu 2
|
|
char
|
|
.IP \(bu 2
|
|
boolean
|
|
.IP \(bu 2
|
|
lists
|
|
|
|
.RE
|
|
|
|
.PP
|
|
For the syntax of these options, see the \fBrofi-theme(5)\fP manpage.
|
|
|
|
.PP
|
|
For use on the command line, Boolean options have a non-default command-line
|
|
syntax. Example to enable option X:
|
|
|
|
.EX
|
|
-X
|
|
|
|
.EE
|
|
|
|
.PP
|
|
To disable option X:
|
|
|
|
.EX
|
|
-no-X
|
|
|
|
.EE
|
|
|
|
.PP
|
|
Below is a list of the most important options:
|
|
|
|
.SS General
|
|
.PP
|
|
\fB-help\fR
|
|
|
|
.PP
|
|
The help option shows the full list of command-line options and the current set
|
|
values. These include dynamic (run-time generated) options.
|
|
|
|
.PP
|
|
\fB-version\fR
|
|
|
|
.PP
|
|
Show the \fBrofi\fP version and exit.
|
|
|
|
.PP
|
|
\fB-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-dump-theme\fR
|
|
|
|
.PP
|
|
Dump the current active theme, in rasi format, to stdout and exit.
|
|
|
|
.PP
|
|
\fB-rasi-validate\fR \fIfilename\fP
|
|
|
|
.PP
|
|
Try to parse the file and return 0 when successful, non-zero when failed.
|
|
|
|
.PP
|
|
\fB-list-keybindings\fR
|
|
|
|
.PP
|
|
List all known keybindings without trying to parse them. This can be used to
|
|
look for duplicate bindings.
|
|
|
|
.PP
|
|
\fB-threads\fR \fInum\fP
|
|
|
|
.PP
|
|
Specify the number of threads \fBrofi\fP should use:
|
|
|
|
.RS
|
|
.IP \(bu 2
|
|
0: Autodetect the number of supported hardware threads.
|
|
.IP \(bu 2
|
|
1: Disable threading
|
|
.IP \(bu 2
|
|
2..n: Specify the maximum number of threads to use in the thread pool.
|
|
|
|
.RE
|
|
|
|
.PP
|
|
Default: Autodetect
|
|
|
|
.PP
|
|
\fB-display\fR \fIdisplay\fP
|
|
|
|
.PP
|
|
The X server to contact. Default is \fB$DISPLAY\fR\&.
|
|
|
|
.PP
|
|
\fB-dmenu\fR
|
|
|
|
.PP
|
|
Run \fBrofi\fP in dmenu mode. This allows for interactive scripts.
|
|
In \fBdmenu\fR mode, \fBrofi\fP reads from STDIN, and output to STDOUT.
|
|
A simple example, displaying three pre-defined options:
|
|
|
|
.EX
|
|
echo -e "Option #1\\nOption #2\\nOption #3" | rofi -dmenu
|
|
|
|
.EE
|
|
|
|
.PP
|
|
Or get the options from a script:
|
|
|
|
.EX
|
|
~/my_script.sh | rofi -dmenu
|
|
|
|
.EE
|
|
|
|
.PP
|
|
See the \fBrofi-dmenu(5)\fP manpage for more information.
|
|
|
|
.PP
|
|
\fB-show\fR \fImode\fP
|
|
|
|
.PP
|
|
Open \fBrofi\fP in a certain mode. Available modes are \fBwindow\fR, \fBrun\fR, \fBdrun\fR,
|
|
\fBssh\fR, \fBcombi\fR\&. The special argument \fBkeys\fR can be used to open a searchable
|
|
list of supported key bindings
|
|
(see the \fBrofi-keys(5)\fP manpage)
|
|
|
|
.PP
|
|
To show the run-dialog:
|
|
|
|
.EX
|
|
rofi -show run
|
|
|
|
.EE
|
|
|
|
.PP
|
|
If \fB-show\fR is the last option passed to rofi, the first enabled modes is shown.
|
|
|
|
.PP
|
|
\fB-modes\fR \fImode1,mode2\fP
|
|
|
|
.PP
|
|
Specify an ordered, comma-separated list of modes to enable.
|
|
Enabled modes can be changed at runtime. Default key is \fBCtrl+Tab\fR\&.
|
|
If no modes are specified, all configured modes will be enabled.
|
|
To only show the \fBrun\fR and \fBssh\fR launcher:
|
|
|
|
.EX
|
|
rofi -modes "run,ssh" -show run
|
|
|
|
.EE
|
|
|
|
.PP
|
|
Custom modes can be added using the internal \fBscript\fR mode. Each such mode has
|
|
two parameters:
|
|
|
|
.EX
|
|
<name>:<script>
|
|
|
|
.EE
|
|
|
|
.PP
|
|
Example: Have a mode called 'Workspaces' using the \fBi3_switch_workspaces.sh\fR
|
|
script:
|
|
|
|
.EX
|
|
rofi -modes "window,run,ssh,Workspaces:i3_switch_workspaces.sh" -show Workspaces
|
|
|
|
.EE
|
|
|
|
.PP
|
|
Notes: The i3 window manager dislikes commas in the command when specifying an
|
|
exec command. For that case, \fB#\fR can be used as a separator.
|
|
|
|
.PP
|
|
\fBTIP\fP: The name is allowed to contain spaces:
|
|
|
|
.EX
|
|
rofi -modes "My File Browser:fb.sh" -show "My File Browser"
|
|
|
|
.EE
|
|
|
|
.PP
|
|
\fB-case-sensitive\fR
|
|
|
|
.PP
|
|
Start in case-sensitive mode. This option can be changed at run-time using the
|
|
\fB-kb-toggle-case-sensitivity\fR key binding.
|
|
|
|
.PP
|
|
\fB-cycle\fR
|
|
|
|
.PP
|
|
Cycle through the result list. Default is 'true'.
|
|
|
|
.PP
|
|
\fB-filter\fR \fIfilter\fP
|
|
|
|
.PP
|
|
Filter the list by setting text in input bar to \fIfilter\fP
|
|
|
|
.PP
|
|
\fB-config\fR \fIfilename\fP
|
|
|
|
.PP
|
|
Load an alternative configuration file.
|
|
|
|
.PP
|
|
\fB-cache-dir\fR \fIfilename\fP
|
|
|
|
.PP
|
|
Directory that is used to place temporary files, like history.
|
|
|
|
.PP
|
|
\fB-scroll-method\fR \fImethod\fP
|
|
|
|
.PP
|
|
Select the scrolling method. 0: Per page, 1: continuous.
|
|
|
|
.PP
|
|
\fB-normalize-match\fR
|
|
|
|
.PP
|
|
Normalize the string before matching, so \fBo\fR will match \fBö\fR, and \fBé\fR matches
|
|
\fBe\fR\&. This is not a perfect implementation, but works. For now, it disables
|
|
highlighting of the matched part.
|
|
|
|
.PP
|
|
\fB-no-lazy-grab\fR
|
|
|
|
.PP
|
|
Disables lazy grab, this forces the keyboard being grabbed before gui is shown.
|
|
|
|
.PP
|
|
\fB-no-plugins\fR
|
|
|
|
.PP
|
|
Disable plugin loading.
|
|
|
|
.PP
|
|
\fB-plugin-path\fR \fIdirectory\fP
|
|
|
|
.PP
|
|
Specify the directory where \fBrofi\fP should look for plugins.
|
|
|
|
.PP
|
|
\fB-show-icons\fR
|
|
|
|
.PP
|
|
Show application icons in \fBdrun\fR and \fBwindow\fR modes.
|
|
|
|
.PP
|
|
\fB-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-markup\fR
|
|
|
|
.PP
|
|
Use Pango markup to format output wherever possible.
|
|
|
|
.PP
|
|
\fB-normal-window\fR
|
|
|
|
.PP
|
|
Make \fBrofi\fP react like a normal application window. Useful for scripts like
|
|
Clerk that are basically an application.
|
|
|
|
.PP
|
|
\fB-[no-]steal-focus\fR
|
|
|
|
.PP
|
|
Make rofi steal focus on launch and restore close to window that held it when
|
|
launched.
|
|
|
|
.PP
|
|
\fB-refilter-timeout-limit\fR
|
|
|
|
.PP
|
|
The time (in ms) boundary filter may take before switch from instant to delayed
|
|
filter mode.
|
|
|
|
.PP
|
|
Default: 300
|
|
|
|
.PP
|
|
A fallback icon can be specified for each mode:
|
|
|
|
.EX
|
|
configuration {
|
|
<mode>{
|
|
fallback-icon: "<icon name>";
|
|
}
|
|
}
|
|
|
|
.EE
|
|
|
|
.PP
|
|
Example
|
|
|
|
.EX
|
|
configuration {
|
|
run,drun {
|
|
fallback-icon: "application-x-addon";
|
|
}
|
|
}
|
|
|
|
.EE
|
|
|
|
.SS Matching
|
|
.PP
|
|
\fB-matching\fR \fImethod\fP
|
|
|
|
.PP
|
|
Specify the matching algorithm used.
|
|
Currently, the following methods are supported:
|
|
|
|
.RS
|
|
.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
|
|
.IP \(bu 2
|
|
\fBprefix\fP: match prefix
|
|
|
|
.RE
|
|
|
|
.PP
|
|
Default: \fInormal\fP
|
|
|
|
.PP
|
|
Note: glob matching might be slow for larger lists
|
|
|
|
.PP
|
|
\fB-tokenize\fR
|
|
|
|
.PP
|
|
Tokenize the input.
|
|
|
|
.PP
|
|
\fB-drun-categories\fR \fIcategory1\fP,\fIcategory2\fP
|
|
|
|
.PP
|
|
Only show desktop files that are present in the listed categories.
|
|
|
|
.PP
|
|
\fB-drun-match-fields\fR \fIfield1\fP,\fIfield2\fP,...
|
|
|
|
.PP
|
|
When using \fBdrun\fR, match only with the specified Desktop entry fields.
|
|
The different fields are:
|
|
|
|
.RS
|
|
.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
|
|
\fBall\fP: all the above
|
|
|
|
.RE
|
|
|
|
.PP
|
|
Default: \fIname,generic,exec,categories,keywords\fP
|
|
|
|
.PP
|
|
\fB-drun-display-format\fR
|
|
|
|
.PP
|
|
The format string for the \fBdrun\fR dialog:
|
|
|
|
.RS
|
|
.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
|
|
\fBurl\fP: The url in case of a link type desktop file
|
|
|
|
.RE
|
|
|
|
.PP
|
|
Pango markup can be used to formatting the output.
|
|
|
|
.PP
|
|
Default: {name} [({generic})]
|
|
|
|
.PP
|
|
Note: Only fields enabled in \fB-drun-match-fields\fR can be used in the format
|
|
string.
|
|
|
|
.PP
|
|
\fB-[no-]drun-show-actions\fR
|
|
|
|
.PP
|
|
Show actions present in the Desktop files.
|
|
|
|
.PP
|
|
Default: false
|
|
|
|
.PP
|
|
\fB-window-match-fields\fR \fIfield1\fP,\fIfield2\fP,...
|
|
|
|
.PP
|
|
When using window mode, match only with the specified fields.
|
|
The different fields are:
|
|
|
|
.RS
|
|
.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
|
|
\fBall\fP: all the above
|
|
|
|
.RE
|
|
|
|
.PP
|
|
Default: \fIall\fP
|
|
|
|
.PP
|
|
\fB-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
|
|
Default: '-'
|
|
|
|
.SS Filtered menu sort
|
|
.PP
|
|
\fB-sort\fR to enable
|
|
.br
|
|
\fB-no-sort\fR to disable
|
|
|
|
.PP
|
|
Enable, disable sort for filtered menu.
|
|
This setting can be changed at runtime (see \fB-kb-toggle-sort\fR).
|
|
|
|
.PP
|
|
\fB-sorting-method\fR 'method' to specify the sort method.
|
|
|
|
.PP
|
|
There are 2 methods:
|
|
|
|
.RS
|
|
.IP \(bu 2
|
|
\fBlevenshtein\fP (Default)
|
|
.IP \(bu 2
|
|
\fBfzf\fP
|
|
|
|
.RE
|
|
|
|
.SS Layout and Theming
|
|
.PP
|
|
\fBIMPORTANT:\fP In newer \fBrofi\fP releases, all the theming options have been
|
|
moved into the new theme format. They are no longer normal \fBrofi\fP options
|
|
that can be passed directly on the command line (there are too many). Small
|
|
snippets can be passed on the command line: \fBrofi -theme-str 'window {width:
|
|
50%;}'\fR to override a single setting. They are merged into the current theme.
|
|
They can also be appended at the end of the \fBrofi\fP config file to override
|
|
parts of the theme.
|
|
|
|
.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.
|
|
|
|
.PP
|
|
\fB-location\fR
|
|
|
|
.PP
|
|
Specify where the window should be located. The numbers map to the following
|
|
locations on screen:
|
|
|
|
.EX
|
|
1 2 3
|
|
8 0 4
|
|
7 6 5
|
|
|
|
.EE
|
|
|
|
.PP
|
|
Default: \fI0\fP
|
|
|
|
.PP
|
|
\fB-fixed-num-lines\fR
|
|
|
|
.PP
|
|
Keep a fixed number of visible lines.
|
|
|
|
.PP
|
|
\fB-sidebar-mode\fR
|
|
|
|
.PP
|
|
Open in sidebar-mode. In this mode, a list of all enabled modes is shown at the
|
|
bottom (See \fB-modes\fR option). To show sidebar, use:
|
|
|
|
.EX
|
|
rofi -show run -sidebar-mode
|
|
|
|
.EE
|
|
|
|
.PP
|
|
\fB-hover-select\fR
|
|
|
|
.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:
|
|
|
|
.EX
|
|
rofi -show run -hover-select -me-select-entry '' -me-accept-entry MousePrimary
|
|
|
|
.EE
|
|
|
|
.PP
|
|
\fB-eh\fR \fInumber\fP
|
|
|
|
.PP
|
|
Set row height (in chars)
|
|
Default: \fI1\fP
|
|
|
|
.PP
|
|
\fB-auto-select\fR
|
|
|
|
.PP
|
|
When one entry is left, automatically select it.
|
|
|
|
.PP
|
|
\fB-m\fR \fInum\fP
|
|
.br
|
|
\fB-m\fR \fIname\fP
|
|
.br
|
|
\fB-monitor\fR \fInum\fP
|
|
.br
|
|
\fB-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:
|
|
|
|
.RS
|
|
.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 of 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
|
|
\fB-5\fP: the monitor that shows the mouse pointer.
|
|
|
|
.RE
|
|
|
|
.PP
|
|
Default: \fI-5\fP
|
|
|
|
.PP
|
|
See \fBrofi -h\fR output for the detected monitors, their position, and size.
|
|
|
|
.PP
|
|
\fB-theme\fR \fIfilename\fP
|
|
|
|
.PP
|
|
Path to the new theme file format. This overrides the old theme settings.
|
|
|
|
.PP
|
|
\fB-theme-str\fR \fIstring\fP
|
|
|
|
.PP
|
|
Allow theme parts to be specified on the command line as an override.
|
|
|
|
.PP
|
|
For example:
|
|
|
|
.EX
|
|
rofi -theme-str '#window { fullscreen: true; }'
|
|
|
|
.EE
|
|
|
|
.PP
|
|
This option can be specified multiple times.
|
|
This is now the method to tweak the theme via the command line.
|
|
|
|
.PP
|
|
\fB-dpi\fR \fInumber\fP
|
|
|
|
.PP
|
|
Override the default DPI setting.
|
|
|
|
.RS
|
|
.IP \(bu 2
|
|
If set to \fB0\fR, it tries to auto-detect based on X11 screen size (similar to
|
|
i3 and GTK).
|
|
.IP \(bu 2
|
|
If set to \fB1\fR, it tries to auto-detect based on the size of the monitor
|
|
that \fBrofi\fP is displayed on (similar to latest Qt 5).
|
|
|
|
.RE
|
|
|
|
.PP
|
|
\fB-selected-row\fR \fIselected row\fP
|
|
|
|
.PP
|
|
Select a certain row.
|
|
|
|
.PP
|
|
Default: \fI0\fP
|
|
|
|
.SS PATTERN setting
|
|
.PP
|
|
\fB-terminal\fR
|
|
|
|
.PP
|
|
Specify which terminal to start.
|
|
|
|
.EX
|
|
rofi -terminal xterm
|
|
|
|
.EE
|
|
|
|
.PP
|
|
Pattern: \fI{terminal}\fP
|
|
|
|
.PP
|
|
Default: \fIx-terminal-emulator\fP
|
|
|
|
.PP
|
|
\fB-ssh-client\fR \fIclient\fP
|
|
|
|
.PP
|
|
Override the used \fBssh\fR client.
|
|
|
|
.PP
|
|
Pattern: \fI{ssh-client}\fP
|
|
|
|
.PP
|
|
Default: \fIssh\fP
|
|
|
|
.SS SSH settings
|
|
.PP
|
|
\fB-ssh-command\fR \fIcmd\fP
|
|
|
|
.PP
|
|
Set the command to execute when starting an ssh session.
|
|
The pattern \fI{host}\fP is replaced by the selected ssh entry.
|
|
|
|
.PP
|
|
Pattern: \fI{ssh-client}\fP
|
|
|
|
.PP
|
|
Default: \fI{terminal} -e '{ssh-client}' '{host}' [-p {port}]\fP
|
|
|
|
.PP
|
|
\fB-parse-hosts\fR
|
|
|
|
.PP
|
|
Parse the \fB/etc/hosts\fR file for entries.
|
|
|
|
.PP
|
|
Default: \fIdisabled\fP
|
|
|
|
.PP
|
|
\fB-parse-known-hosts\fR
|
|
.br
|
|
\fB-no-parse-known-hosts\fR
|
|
|
|
.PP
|
|
Parse the \fB~/.ssh/known_hosts\fR file for entries.
|
|
|
|
.PP
|
|
Default: \fIenabled\fP
|
|
|
|
.SS Run settings
|
|
.PP
|
|
\fB-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
|
|
Example to run applications in a dedicated cgroup with systemd. Requires a
|
|
shell to escape and interpolate the unit name correctly.
|
|
|
|
.EX
|
|
"bash -c 'systemd-run --user --unit=app-rofi-\\$(systemd-escape {cmd})-\\$RANDOM {cmd}'"
|
|
|
|
.EE
|
|
|
|
.PP
|
|
\fB-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-run-list-command\fR \fIcmd\fP
|
|
|
|
.PP
|
|
If set, use an external tool to generate a list of executable commands. Uses
|
|
\fBrun-command\fR\&.
|
|
|
|
.PP
|
|
Default: \fI{cmd}\fP
|
|
|
|
.SS Window switcher settings
|
|
.PP
|
|
\fB-window-format\fR \fIformat\fP
|
|
|
|
.PP
|
|
Format what is being displayed for windows.
|
|
|
|
.PP
|
|
\fIformat\fP: {field[:len]}
|
|
|
|
.PP
|
|
\fIfield\fP:
|
|
|
|
.RS
|
|
.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
|
|
|
|
.RE
|
|
|
|
.PP
|
|
\fIlen\fP: maximum field length (0 for auto-size). If length is negative, the entry
|
|
will be unchanged. If length is positive, the entry will be truncated or padded
|
|
to fill that length.
|
|
|
|
.PP
|
|
default: {w} {c} {t}
|
|
|
|
.PP
|
|
\fB-window-command\fR \fIcmd\fP
|
|
|
|
.PP
|
|
Set command to execute on selected window for an alt action (\fB-kb-accept-alt\fR).
|
|
See \fIPATTERN\fP\&.
|
|
|
|
.PP
|
|
Default: \fI"wmctrl -i -R {window}"\fP
|
|
|
|
.PP
|
|
\fB-window-thumbnail\fR
|
|
|
|
.PP
|
|
Show window thumbnail (if available) as icon in the window switcher.
|
|
|
|
.PP
|
|
You can stop rofi from exiting when closing a window (allowing multiple to be
|
|
closed in a row).
|
|
|
|
.EX
|
|
configuration {
|
|
window {
|
|
close-on-delete: false;
|
|
}
|
|
}
|
|
|
|
.EE
|
|
|
|
.PP
|
|
You can hide the currently active window with the 'hide-active-window' setting:
|
|
|
|
.EX
|
|
configuration {
|
|
window {
|
|
hide-active-window: true;
|
|
}
|
|
}
|
|
|
|
.EE
|
|
|
|
.PP
|
|
or pass \fB-window-hide-active-window true\fR on command line.
|
|
|
|
.PP
|
|
You can prefer the icon theme above the window set icon with the
|
|
'prefer-icon-theme' setting:
|
|
|
|
.EX
|
|
configuration {
|
|
window {
|
|
prefer-icon-theme: true;
|
|
}
|
|
}
|
|
|
|
.EE
|
|
|
|
.PP
|
|
or pass \fB-window-prefer-icon-theme true\fR on command line.
|
|
|
|
.SS Combi settings
|
|
.PP
|
|
\fB-combi-modes\fR \fImode1\fP,\fImode2\fP
|
|
|
|
.PP
|
|
The modes to combine in combi mode.
|
|
For syntax to \fB-combi-modes\fR, see \fB-modes\fR\&.
|
|
To get one merge view, of \fBwindow\fR,\fBrun\fR, and \fBssh\fR:
|
|
|
|
.EX
|
|
rofi -show combi -combi-modes "window,run,ssh" -modes combi
|
|
|
|
.EE
|
|
|
|
.PP
|
|
\fBNOTE\fP: The i3 window manager dislikes commas in the command when specifying
|
|
an exec command. For that case, \fB#\fR can be used as a separator.
|
|
|
|
.PP
|
|
\fB-combi-display-format\fR
|
|
|
|
.PP
|
|
The format string for entries in the \fBcombi\fR dialog:
|
|
|
|
.RS
|
|
.IP \(bu 2
|
|
\fBmode\fP: the mode display name
|
|
.IP \(bu 2
|
|
\fBtext\fP: the entry text
|
|
|
|
.RE
|
|
|
|
.PP
|
|
Pango markup can be used to formatting the output.
|
|
|
|
.PP
|
|
Default: {mode} {text}
|
|
|
|
.PP
|
|
Note: This setting is ignored if \fBcombi-hide-mode-prefix\fR is enabled.
|
|
|
|
.SS History
|
|
.PP
|
|
\fB-disable-history\fR
|
|
.br
|
|
\fB-no-disable-history\fR (re-enable history)
|
|
|
|
.PP
|
|
Disable history
|
|
|
|
.PP
|
|
\fB-max-history-size\fR \fInumber\fP
|
|
|
|
.PP
|
|
Maximum number of entries to store in history. Defaults to 25. (WARNING: can
|
|
cause slowdowns when set too high)
|
|
|
|
.SS Message dialog
|
|
.PP
|
|
\fB-e\fR \fImessage\fP
|
|
|
|
.PP
|
|
Pops up a message dialog (used internally for showing errors) with \fImessage\fP\&.
|
|
Message can be multi-line.
|
|
|
|
.PP
|
|
Passing \fB-e -\fR reads (blocking) from standard in and displays this.
|
|
|
|
.SS File browser settings
|
|
.PP
|
|
File browser behavior can be controlled via the following options:
|
|
|
|
.EX
|
|
configuration {
|
|
filebrowser {
|
|
/** Directory the file browser starts in. */
|
|
directory: "/some/directory";
|
|
/**
|
|
* Sorting method. Can be set to:
|
|
* - "name"
|
|
* - "mtime" (modification time)
|
|
* - "atime" (access time)
|
|
* - "ctime" (change time)
|
|
*/
|
|
sorting-method: "name";
|
|
/** Group directories before files. */
|
|
directories-first: true;
|
|
/** Show hidden files. */
|
|
show-hidden: false;
|
|
/** return 1 on cancel. */
|
|
cancel-returns-1: true;
|
|
/** command */
|
|
command: "xdg-open";
|
|
}
|
|
}
|
|
|
|
.EE
|
|
|
|
.PP
|
|
These options can also be passed on the commandline, for example:
|
|
|
|
.EX
|
|
rofi -filebrowser-cancel-returns-1 true -show filebrowser
|
|
|
|
.EE
|
|
|
|
.PP
|
|
The \fBshow-hidden\fR can also be triggered with the \fBkb-delete-entry\fR keybinding.
|
|
|
|
.SS Recursive Browser settings
|
|
.PP
|
|
Recursive file browser behavior can be controlled via the following options:
|
|
|
|
.EX
|
|
configuration {
|
|
recursivebrowser {
|
|
/** Directory the file browser starts in. */
|
|
directory: "/some/directory";
|
|
/** return 1 on cancel. */
|
|
cancel-returns-1: true;
|
|
/** filter entries using regex */
|
|
filter-regex: "(.*cache.*|.*\\.o)";
|
|
/** command */
|
|
command: "xdg-open";
|
|
}
|
|
}
|
|
|
|
.EE
|
|
|
|
.SS Entry history
|
|
.PP
|
|
The number of previous inputs for the entry box can be modified by setting
|
|
max-history on the entry box.
|
|
|
|
.EX
|
|
configuration {
|
|
entry {
|
|
max-history: 30;
|
|
}
|
|
}
|
|
|
|
.EE
|
|
|
|
.PP
|
|
By default the file is stored in the systems cache directory, in a file called
|
|
\fBrofi-entry-history.txt\fR\&.
|
|
|
|
.SS Other
|
|
.PP
|
|
\fB-drun-use-desktop-cache\fR
|
|
|
|
.PP
|
|
Build and use a cache with the content of desktop files. Usable for systems
|
|
with slow hard drives.
|
|
|
|
.PP
|
|
\fB-drun-reload-desktop-cache\fR
|
|
|
|
.PP
|
|
If \fBdrun-use-desktop-cache\fR is enabled, rebuild a cache with the content of
|
|
desktop files.
|
|
|
|
.PP
|
|
\fB-drun-url-launcher\fR \fIcommand\fP
|
|
|
|
.PP
|
|
Command to open a Desktop Entry that is a Link.
|
|
|
|
.PP
|
|
\fB-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-replace\fR
|
|
|
|
.PP
|
|
If rofi is already running, based on pid file, try to kill that instance.
|
|
|
|
.PP
|
|
\fB-display-{mode}\fR \fIstring\fP
|
|
|
|
.PP
|
|
Set the name to use for mode. This is used as prompt and in combi-browser.
|
|
|
|
.PP
|
|
It is now preferred to use the configuration file:
|
|
|
|
.EX
|
|
configuration {
|
|
{mode} {
|
|
display-name: *string*;
|
|
}
|
|
}
|
|
|
|
.EE
|
|
|
|
.PP
|
|
\fB-click-to-exit\fR
|
|
\fB-no-click-to-exit\fR
|
|
|
|
.PP
|
|
Click the mouse outside the \fBrofi\fP window to exit.
|
|
|
|
.PP
|
|
Default: \fIenabled\fP
|
|
|
|
.PP
|
|
\fB-xserver-i300-workaround\fR
|
|
|
|
.PP
|
|
Workaround for bug in Xserver. See issue #611 and #1642 on the rofi issue
|
|
tracker.
|
|
|
|
.PP
|
|
Default: \fIdisabled\fP
|
|
|
|
.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:
|
|
|
|
.RS
|
|
.IP \(bu 2
|
|
\fB{host}\fR: the host to connect to
|
|
.IP \(bu 2
|
|
\fB{terminal}\fR: the configured terminal (see -terminal)
|
|
.IP \(bu 2
|
|
\fB{ssh-client}\fR: the configured ssh client (see -ssh-client)
|
|
.IP \(bu 2
|
|
\fB{cmd}\fR: the command to execute
|
|
.IP \(bu 2
|
|
\fB{window}\fR: the window ID of the selected window (in \fBwindow-command\fR)
|
|
|
|
.RE
|
|
|
|
.PP
|
|
It processes the string as follows: \fB{key}\fR
|
|
is replaced by its value, if \fB{key}\fR is not set it is removed. If the \fB{key}\fR
|
|
is in between \fB[]\fR all the text between \fB[]\fR is removed if \fB{key}\fR is not set.
|
|
Otherwise key is replaced and the \fB[]\fR are removed.
|
|
|
|
.PP
|
|
For example: \fB{ssh-client} [-p {port}] {host}\fR
|
|
|
|
.SH THEMING
|
|
.PP
|
|
Please see \fBrofi-theme(5)\fP manpage for more information on theming.
|
|
|
|
.SH KEY BINDINGS
|
|
.PP
|
|
Please see the \fBrofi-keys(5)\fP manpage for the keybindings and how to set them
|
|
up.
|
|
|
|
.PP
|
|
The keybinding can also be used for actions, when the action is executed the
|
|
mentioned keystroke is inserted:
|
|
|
|
.SS Timeout
|
|
.PP
|
|
You can configure an action to be taken when rofi has not been interacted
|
|
with for a certain amount of seconds. You can specify a keybinding to trigger
|
|
after X seconds.
|
|
|
|
.EX
|
|
configuration {
|
|
timeout {
|
|
delay: 15;
|
|
action: "kb-cancel";
|
|
}
|
|
}
|
|
|
|
.EE
|
|
|
|
.SS Input change
|
|
.PP
|
|
When the input of the textbox changes:
|
|
|
|
.EX
|
|
configuration {
|
|
inputchange {
|
|
action: "kb-row-first";
|
|
}
|
|
}
|
|
|
|
.EE
|
|
|
|
.SH Available Modes
|
|
.SS window
|
|
.PP
|
|
Show a list of all the windows and allow switching between them. Pressing the
|
|
\fBdelete-entry\fR binding (\fBshift-delete\fR) will close the window. Pressing the
|
|
\fBaccept-custom\fR binding (\fBcontrol-enter\fR or \fBshift-enter\fR) will run a command
|
|
on the window. (See option \fBwindow-command\fR );
|
|
|
|
.PP
|
|
If there is no match, it will try to launch the input.
|
|
|
|
.SS windowcd
|
|
.PP
|
|
Shows a list of the windows on the current desktop and allows switching between
|
|
them. Pressing the \fBdelete-entry\fR binding (\fBshift-delete\fR) will kill the
|
|
window. Pressing the \fBaccept-custom\fR binding (\fBcontrol-enter\fR or \fBshift-enter\fR)
|
|
will run a command on the window. (See option \fBwindow-command\fR );
|
|
|
|
.PP
|
|
If there is no match, it will try to launch the input.
|
|
|
|
.SS run
|
|
.PP
|
|
Shows a list of executables in \fB$PATH\fR and can launch them (optional in a
|
|
terminal).
|
|
|
|
.RS
|
|
.IP \(bu 2
|
|
Pressing the \fBdelete-entry\fR binding (\fBshift-delete\fR) will remove this entry
|
|
from the run history.
|
|
.IP \(bu 2
|
|
Pressing the \fBaccept-custom\fR binding (\fBcontrol-enter\fR) will run the command
|
|
as entered in the entry box.
|
|
.IP \(bu 2
|
|
Pressing the \fBaccept-alt\fR binding (\fBshift-enter\fR) will run the command in a
|
|
terminal.
|
|
|
|
.RE
|
|
|
|
.PP
|
|
When pressing the \fBmode-complete\fR binding (\fBControl-l\fR), you can use the File
|
|
Browser mode to launch the application with a file as the first argument.
|
|
|
|
.SS drun
|
|
.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.
|
|
|
|
.RS
|
|
.IP \(bu 2
|
|
Pressing the \fBdelete-entry\fR binding (\fBshift-delete\fR) will remove this entry
|
|
from the run history.
|
|
.IP \(bu 2
|
|
Pressing the \fBaccept-custom\fR binding (\fBcontrol-enter\fR) will run the command
|
|
as entered in the entry box.
|
|
.IP \(bu 2
|
|
Pressing the \fBaccept-alt\fR binding (\fBshift-enter\fR) will run the command in a
|
|
terminal.
|
|
|
|
.RE
|
|
|
|
.PP
|
|
When pressing the \fBmode-complete\fR binding (\fBControl-l\fR), you can use the File
|
|
Browser mode to launch the application passing a file as argument if specified
|
|
in the desktop file.
|
|
|
|
.PP
|
|
The DRUN mode tries to follow the XDG Desktop Entry
|
|
Specification
|
|
\[la]https://freedesktop.org/wiki/Specifications/desktop\-entry\-spec/\[ra]
|
|
and should be compatible with applications using this standard. Some
|
|
applications create invalid desktop files, \fBrofi\fP will discard these entries.
|
|
See the debugging section for more info on DRUN mode, this will print why
|
|
desktop files are discarded.
|
|
|
|
.PP
|
|
There are a few advanced options to tweak the behaviour:
|
|
|
|
.EX
|
|
configuration {
|
|
drun {
|
|
/** Scan the current users desktop for desktop files. */
|
|
scan-desktop: true;
|
|
/** Parse user desktop files. */
|
|
parse-user: true;
|
|
/** Parse system desktop files. */
|
|
parse-system: false;
|
|
}
|
|
}
|
|
|
|
.EE
|
|
|
|
.SS ssh
|
|
.PP
|
|
Shows a list of SSH targets based on your \fBssh\fR config file, and allows to
|
|
quickly \fBssh\fR into them.
|
|
|
|
.SS keys
|
|
.PP
|
|
Shows a searchable list of key bindings.
|
|
|
|
.SS script
|
|
.PP
|
|
Allows custom scripted Modes to be added, see the \fBrofi-script(5)\fP manpage
|
|
for more information.
|
|
|
|
.SS combi
|
|
.PP
|
|
Combines multiple modes in one list. Specify which modes are included with the
|
|
\fB-combi-modes\fR option.
|
|
|
|
.PP
|
|
When using the combi mode, a \fI!bang\fP can be used to filter the results by modes.
|
|
All modes that match the bang as a prefix are included.
|
|
For example, say you have specified \fB-combi-modes run,window,windowcd\fR\&. If your
|
|
query begins with the bang \fB!w\fR, only results from the \fBwindow\fR and \fBwindowcd\fR
|
|
modes are shown, even if the rest of the input text would match results from \fBrun\fR\&.
|
|
|
|
.PP
|
|
If no match, the input is handled by the first combined modes.
|
|
|
|
.SH FAQ
|
|
.SS The text in the window switcher is not nicely aligned
|
|
.PP
|
|
Try using a mono-space font or tabs + the tab-stops setting..
|
|
|
|
.SS The window is completely black
|
|
.PP
|
|
Check quotes used on the command-line: you might have used \fB“\fR ("smart quotes")
|
|
instead of \fB"\fR ("machine quotes").
|
|
|
|
.SS What does the icon in the top right show?
|
|
.PP
|
|
The indicator shows:
|
|
|
|
.RS
|
|
.IP \(bu 2
|
|
Case insensitive and no sorting.
|
|
.IP \(bu 2
|
|
\fB-\fR Case sensitivity enabled, no sorting.
|
|
.IP \(bu 2
|
|
\fB+\fR Case insensitive and Sorting enabled
|
|
.IP \(bu 2
|
|
\fB±\fR Sorting and Case sensitivity enabled"
|
|
|
|
.RE
|
|
|
|
.SS Why do I see different icons for run,drun and window mode
|
|
.PP
|
|
Each of these modes uses different methods of resolving the icon:
|
|
|
|
.RS
|
|
.IP \(bu 2
|
|
Window: It first uses the icon that the application exposes via the X11
|
|
Server, if none is set it does a lookup of the window Class name in the icon
|
|
theme.
|
|
.IP \(bu 2
|
|
drun: It uses the icon set in the desktop file.
|
|
.IP \(bu 2
|
|
run: It does a lookup using the executable name.
|
|
|
|
.RE
|
|
|
|
.SH EXAMPLES
|
|
.PP
|
|
Some basic usage examples of \fBrofi\fP:
|
|
|
|
.PP
|
|
Show the run dialog:
|
|
|
|
.EX
|
|
rofi -modes run -show run
|
|
|
|
.EE
|
|
|
|
.PP
|
|
Show the run dialog, and allow switching to Desktop File run dialog (\fBdrun\fR):
|
|
|
|
.EX
|
|
rofi -modes run,drun -show run
|
|
|
|
.EE
|
|
|
|
.PP
|
|
Combine the run and Desktop File run dialog (\fBdrun\fR):
|
|
|
|
.EX
|
|
rofi -modes combi -show combi -combi-modes run,drun
|
|
|
|
.EE
|
|
|
|
.PP
|
|
Combine the run and Desktop File run dialog (\fBdrun\fR), and allow switching to
|
|
window switcher:
|
|
|
|
.EX
|
|
rofi -modes combi,window -show combi -combi-modes run,drun
|
|
|
|
.EE
|
|
|
|
.PP
|
|
Pop up a text message claiming that this is the end:
|
|
|
|
.EX
|
|
rofi -e "This is the end"
|
|
|
|
.EE
|
|
|
|
.PP
|
|
Pop up a text message in red, bold font claiming that this is still the end:
|
|
|
|
.EX
|
|
rofi -e "<span color='red'><b>This is still the end</b></span>" -markup
|
|
|
|
.EE
|
|
|
|
.PP
|
|
Show all key bindings:
|
|
|
|
.EX
|
|
rofi -show keys
|
|
|
|
.EE
|
|
|
|
.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]:
|
|
|
|
.PP
|
|
Some tools (such as \fBimport\fR or \fBxdotool\fR) might be unable to run upon a
|
|
KeyPress event, because the keyboard/pointer is still grabbed. For these
|
|
situations, the \fB--release\fR flag can be used, as it will execute the command
|
|
after the keys have been released.
|
|
|
|
.SH LICENSE
|
|
.EX
|
|
MIT/X11
|
|
|
|
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:
|
|
|
|
The above copyright notice and this permission notice shall be
|
|
included in all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
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
|
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
.EE
|
|
|
|
.SH WEBSITE
|
|
.PP
|
|
\fBrofi\fP website can be found here
|
|
\[la]https://github.com/davatorium/rofi/\[ra]
|
|
|
|
.SH SUPPORT
|
|
.PP
|
|
\fBrofi\fP support can be obtained:
|
|
|
|
.RS
|
|
.IP \(bu 2
|
|
GitHub Discussions
|
|
\[la]https://github.com/davatorium/rofi/discussions\[ra]
|
|
.IP \(bu 2
|
|
IRC
|
|
\[la]irc://irc.libera.chat:6697/#rofi\[ra] (#rofi on irc.libera.chat),
|
|
|
|
.RE
|
|
|
|
.SH DEBUGGING
|
|
.PP
|
|
For more information see \fBrofi-debugging(5)\fP manpage.
|
|
|
|
.SH ISSUE TRACKER
|
|
.PP
|
|
The \fBrofi\fP issue tracker can be found here
|
|
\[la]https://github.com/davatorium/rofi/issues\[ra]
|
|
Before creating an issue, consider posting a question on the discussion forum
|
|
\[la]https://github.com/davatorium/rofi/discussions\[ra] first.
|
|
When creating an issue, please read this
|
|
\[la]https://github.com/davatorium/rofi/blob/master/.github/CONTRIBUTING.md\[ra]
|
|
first.
|
|
|
|
.SH SEE ALSO
|
|
.PP
|
|
\fBrofi-sensible-terminal(1)\fP, \fBdmenu(1)\fP, \fBrofi-debugging(5)\fP,
|
|
\fBrofi-theme(5)\fP, \fBrofi-script(5)\fP,
|
|
\fBrofi-keys(5)\fP,\fBrofi-theme-selector(1)\fP,\fBrofi-dmenu(5)\fP
|
|
|
|
.SH AUTHOR
|
|
.RS
|
|
.IP \(bu 2
|
|
Qball Cow qball@blame.services
|
|
\[la]mailto:qball@blame.services\[ra]
|
|
.IP \(bu 2
|
|
Rasmus Steinke rasi@xssn.at
|
|
\[la]mailto:rasi@xssn.at\[ra]
|
|
.IP \(bu 2
|
|
Morgane Glidic sardemff7+rofi@sardemff7.net
|
|
\[la]mailto:sardemff7+rofi@sardemff7.net\[ra]
|
|
|
|
.RE
|
|
|
|
.PP
|
|
Original code based on work by: Sean Pringle
|
|
\[la]https://github.com/seanpringle/simpleswitcher\[ra] sean.pringle@gmail.com
|
|
\[la]mailto:sean.pringle@gmail.com\[ra]
|
|
|
|
.PP
|
|
For a full list of authors, check the \fBAUTHORS\fR file.
|