rofi/doc/rofi-manpage.markdown

534 lines
12 KiB
Markdown
Raw Normal View History

2014-08-01 21:29:01 +00:00
# ROFI 1 rofi
2014-05-22 08:37:25 +00:00
2014-08-01 21:29:01 +00:00
## NAME
2014-05-22 08:37:25 +00:00
rofi - A window switcher, run dialog and dmenu replacement
2014-08-01 21:29:01 +00:00
## SYNOPSIS
2014-05-22 08:37:25 +00:00
**rofi**
[ -width *pct_scr* ]
[ -lines *lines* ]
[ -columns *columns* ]
[ -font *pangofont* ]
[ -fg *color* ]
2015-04-04 14:46:30 +00:00
[ -fg-urgent *color* ]
[ -fg-active *color* ]
[ -bg *color* ]
[ -bgalt *color* ]
[ -hlfg *color* ]
[ -hlbg *color* ]
[ -key-**mode** *combo* ]
[ -terminal *terminal* ]
[ -location *position* ]
[ -fixed-num-lines ]
[ -padding *padding* ]
[ -opacity *opacity%* ]
[ -display *display* ]
[ -bc *color* ]
[ -bw *width* ]
[ -dmenu [ -p *prompt* ] [ -sep *separator* ] [ -l *selected line* ] ]
[ -ssh-client *client* ]
[ -ssh-command *command* ]
[ -disable-history ]
[ -levenshtein-sort ]
[ -case-sensitive ]
[ -show *mode* ]
[ -modi *mode1,mode2* ]
[ -eh *element height* ]
[ -lazy-filter-limit *limit* ]
[ -e *message*]
2015-04-04 14:46:30 +00:00
[ -a *row* ]
[ -u *row* ]
[ -pid *path* ]
[ -now ]
[ -rnow ]
[ -snow ]
[ -version ]
[ -help]
[ -dump-xresources ]
2015-02-24 16:34:25 +00:00
[ -auto-select ]
2015-03-29 10:27:00 +00:00
[ -parse-hosts ]
2015-04-01 12:49:27 +00:00
[ -combi-modi *mode1,mode2* ]
2014-05-22 08:37:25 +00:00
2014-08-01 21:29:01 +00:00
## DESCRIPTION
**rofi** is an X11 popup window switcher, run dialog, dmenu replacement and more. It focusses on
being fast to use and have minimal distraction. It supports keyboard and mouse navigation, type to
filter, tokenized search and more.
2014-05-22 08:37:25 +00:00
2014-08-01 21:29:01 +00:00
## License
2014-05-22 08:37:25 +00:00
MIT/X11
2014-08-01 21:29:01 +00:00
## USAGE
2014-05-22 08:37:25 +00:00
2014-08-01 21:29:01 +00:00
**rofi** can be used in two ways, single-shot; executes once and directly exits when done or as
2014-05-22 08:37:25 +00:00
daemon listening to specific key-combinations.
2014-08-01 21:29:01 +00:00
## OPTIONS
`-key-{mode}` **KEY**
2014-05-22 08:37:25 +00:00
Set the key combination to display a {mode} in daemon mode.
2014-05-22 08:37:25 +00:00
rofi -key-run F12
rofi -key-ssh control+shift+s
rofi -key-window mod1+Tab
2014-05-22 08:37:25 +00:00
2014-10-20 18:29:26 +00:00
`-dmenu`
Run rofi in dmenu mode. Allowing it to be used for user interaction in scripts.
Pressing `shift-enter` will open the selected entries and move to the next entry.
`-show` *mode*
Open rofi in a certain mode.
For example to show the run-dialog:
rofi -show run
This function deprecates -rnow,-snow and -now
`-switchers` *mode1,mode1*
`-modi` *mode1,mode1*
2014-10-20 18:29:26 +00:00
Give a comma separated list of modes to enable, in what order.
For example to only show the run and ssh launcher (in that order):
2014-10-20 18:29:26 +00:00
rofi -modi "run,ssh" -show run
2014-10-20 18:29:26 +00:00
Custom modes can be added using the internal 'script' mode. Each mode has two parameters:
<name>:<script>
So to have a mode 'Workspaces' using the `i3_switch_workspace.sh` script type:
rofi -modi "window,run,ssh,Workspaces:i3_switch_workspaces.sh" -show Workspaces
2014-10-20 18:29:26 +00:00
2015-01-12 13:13:46 +00:00
`-case-sensitive`
Start in case sensitive mode.
2014-10-20 18:29:26 +00:00
### Theming
2014-10-20 18:29:26 +00:00
2014-05-22 08:37:25 +00:00
`-bg`
Set the background text color (X11 named color or hex #rrggbb) for the menu.
2014-05-22 08:37:25 +00:00
rofi -bg "#222222"
2014-05-22 08:37:25 +00:00
Default: *#f2f1f0*
`-bgalt`
Set the background text color for alternating rows (X11 named color or hex #rrggbb) for the menu.
rofi -bgalt "#222222"
2014-05-22 08:37:25 +00:00
Default: *#f2f1f0*
2014-05-22 08:37:25 +00:00
`-bc`
Set the border color (X11 named color or hex #rrggbb) for the menu.
2014-05-22 08:37:25 +00:00
2014-08-01 21:29:01 +00:00
rofi -bc black
2014-05-22 08:37:25 +00:00
Default: *black*
2014-05-22 08:37:25 +00:00
`-bw`
Set the border width in pixels.
2014-05-22 08:37:25 +00:00
2014-08-01 21:29:01 +00:00
rofi -bw 1
2014-05-22 08:37:25 +00:00
Default: *1*
2014-05-22 08:37:25 +00:00
`-fg`
Set the foreground text color (X11 named color or hex #rrggbb) for the menu.
2014-05-22 08:37:25 +00:00
2014-08-01 21:29:01 +00:00
rofi -fg "#cccccc"
2014-05-22 08:37:25 +00:00
Default: *#222222*
2014-05-22 08:37:25 +00:00
2015-04-04 14:46:30 +00:00
`-fg-urgent`
Set the foreground text color (X11 named color or hex #rrggbb) for the menu.
rofi -fg-urgent "#ffcccc"
Default: *#ff2222*
`-fg-active`
Set the foreground text color (X11 named color or hex #rrggbb) for the menu.
rofi -fg-active "#ccccff"
Default: *#2222ff*
2014-05-22 08:37:25 +00:00
`-hlbg`
2014-08-01 21:29:01 +00:00
Set the background text color (X11 named color or hex #rrggbb) for the highlighted item in the
menu.
2014-05-22 08:37:25 +00:00
2015-02-04 22:28:14 +00:00
rofi -hlbg "#005577"
2014-05-22 08:37:25 +00:00
Default: *#005577*
2014-05-22 08:37:25 +00:00
`-hlfg`
2014-08-01 21:29:01 +00:00
Set the foreground text color (X11 named color or hex #rrggbb) for the highlighted item in the
menu.
2014-05-22 08:37:25 +00:00
2015-02-04 22:28:14 +00:00
rofi -hlfg "#ffffff"
2014-05-22 08:37:25 +00:00
Default: *#FFFFFF*
`-font`
Pango font name for use by the menu.
rofi -font monospace\ 14
Default: *mono 12*
2014-05-22 08:37:25 +00:00
`-opacity`
2014-08-01 21:29:01 +00:00
Set the window opacity (0-100).
2014-05-22 08:37:25 +00:00
2014-08-01 21:29:01 +00:00
rofi -opacity "75"
2014-05-22 08:37:25 +00:00
Default: *100*
`-eh` *element height*
The height of a field in lines. e.g.
echo -e "a\n3|b\n4|c\n5" | rofi -sep '|' -eh 2 -dmenu
Default: *1*
2014-10-20 18:29:26 +00:00
### Layout
2014-05-22 08:37:25 +00:00
`-lines`
Maximum number of lines the menu may show before scrolling.
2014-05-22 08:37:25 +00:00
2014-08-01 21:29:01 +00:00
rofi -lines 25
2014-05-22 08:37:25 +00:00
Default: *15*
2014-05-22 08:37:25 +00:00
`-columns`
The number of columns the menu may show before scrolling.
2014-05-22 08:37:25 +00:00
2014-08-01 21:29:01 +00:00
rofi -columns 2
2014-05-22 08:37:25 +00:00
Default: *1*
2014-08-14 19:16:42 +00:00
`-width` [value]
2014-05-22 08:37:25 +00:00
Set the width of the menu as a percentage of the screen width.
2014-05-22 08:37:25 +00:00
2014-08-01 21:29:01 +00:00
rofi -width 60
2014-05-22 08:37:25 +00:00
2014-08-14 19:16:42 +00:00
If value is larger then 100, the size is set in pixels. e.g. to span a full hd monitor:
rofi -width 1920
2014-08-14 19:16:42 +00:00
If the value is negative, it tries to estimates a character width. To show 30 characters on a row:
2014-10-20 18:29:26 +00:00
rofi -width -30
2014-05-22 08:37:25 +00:00
2014-10-20 18:29:26 +00:00
Character width is a rough estimation, and might not be correct, but should work for most monospaced fonts.
2014-05-22 08:37:25 +00:00
Default: *50*
`-location`
2014-05-22 08:37:25 +00:00
2014-08-01 21:29:01 +00:00
Specify where the window should be located. The numbers map to the following location on the
monitor:
2014-05-22 08:37:25 +00:00
2014-08-01 21:29:01 +00:00
1 2 3
8 0 4
7 6 5
2014-05-22 08:37:25 +00:00
Default: *0*
2014-05-22 08:37:25 +00:00
`-fixed-num-lines`
2014-08-01 21:29:01 +00:00
Keep a fixed number of visible lines (See the `-lines` option.)
2014-05-22 08:37:25 +00:00
`-padding`
Define the inner margin of the window.
2014-05-22 08:37:25 +00:00
Default: *5*
2014-11-09 12:10:24 +00:00
`-sidebar-mode`
Go into side-bar mode, it will show list of modi at the bottom.
To show sidebar use:
rofi -show run -sidebar-mode -lines 0
2014-11-09 12:10:24 +00:00
`-lazy-filter-limit` *limit*
The number of entries required for Rofi to go into lazy filter mode.
In lazy filter mode, it won't refilter the list on each keypress, but only after rofi been idle
for 250ms. Experiments shows that the default (5000 lines) works well, set to 0 to always enable.
Default: *5000*
2015-02-24 16:34:25 +00:00
`-auto-select`
When one entry is left, automatically select this.
### PATTERN setting
2014-05-22 08:37:25 +00:00
2014-10-20 18:29:26 +00:00
`-terminal`
2014-05-22 08:37:25 +00:00
Specify what terminal to start.
2014-08-01 21:29:01 +00:00
2014-10-20 18:29:26 +00:00
rofi -terminal xterm
2014-08-01 21:29:01 +00:00
Pattern: *{terminal}*
Default: *x-terminal-emulator*
2014-10-20 18:29:26 +00:00
`-ssh-client` *client*
2014-10-20 18:29:26 +00:00
Override the used ssh client.
2014-05-22 19:56:57 +00:00
Pattern: *{ssh-client}*
Default: *ssh*
2014-05-22 08:37:25 +00:00
### SSH settings
`-ssh-command` *cmd*
Set the command to execute when starting a ssh session.
The pattern *{host}* is replaced by the selected ssh entry.
Default: *{terminal} -e {ssh-client} {host}*
2015-03-29 10:27:00 +00:00
`-parse-hosts`
Parse the `/etc/hosts` files for entries.
2014-10-20 18:29:26 +00:00
### Run settings
`-run-command` *cmd*
Set the command (*{cmd}*) to execute when running an application.
See *PATTERN*.
Default: *{cmd}*
`-run-shell-command` *cmd*
Set the command to execute when running an application in a shell.
See *PATTERN*.
Default: *{terminal} -e {cmd}*
2015-01-05 20:53:50 +00:00
`-run-list-command` *cmd*
If set, use an external tool to generate list of executable commands. Uses 'run-command'
Default: *""*
2015-04-01 12:49:27 +00:00
### Combi settings
`-combi-modi` *mode1,mode2*
The modi to combine in the combi mode.
For syntax to see `-modi`.
To get one merge view, of window,run,ssh:
rofi -show combi -combi-mode "window,run,ssh"
2014-10-20 18:29:26 +00:00
### History and Sorting
2014-06-05 19:55:47 +00:00
`-disable-history`
Disable history
`-levenshtein-sort`
When searching sort the result based on levenshtein distance.
Note that levenshtein sort is disabled in dmenu mode.
2014-10-20 16:11:10 +00:00
### Dmenu specific
2014-05-22 08:37:25 +00:00
2014-10-19 17:42:02 +00:00
`-sep` *separator*
2014-10-20 16:11:10 +00:00
Separator for dmenu. For example to show list a to e with '|' as separator:
echo "a|b|c|d|e" | rofi -sep '|' -dmenu
`-p` *prompt*
Specify the prompt to show in dmenu mode. E.g. select monkey a,b,c,d or e.
echo "a|b|c|d|e" | rofi -sep '|' -dmenu -p "monkey:"
Default: *dmenu*
2014-10-30 16:53:22 +00:00
`-l` *selected line*
Select a certain line.
Default: *0*
`-i`
Number mode, return the index of the selected row. (starting at 0)
2015-04-04 14:46:30 +00:00
`-a` *X*
Active row, mark row X as active. (starting at 0)
You can specify single element: -a 3
A range: -a 3-8
or a set of rows: -a 0,2
Or any combination: -a 0,2-3,9
2015-04-04 14:46:30 +00:00
`-u` *X*
Urgent row, mark row X as urgent. (starting at 0)
You can specify single element: -u 3
A range: -u 3-8
or a set of rows: -u 0,2
Or any combination: -u 0,2-3,9
2015-04-04 14:46:30 +00:00
2014-10-20 16:11:10 +00:00
### Message dialog
`-e` *message*
Popup a message dialog (used internally for showing errors) with *message*.
Message can be multi-line.
2014-10-19 17:42:02 +00:00
### Other
'-pid' *path*
Make **rofi** create a pid file and check this on startup. Avoiding multiple copies running
simultaneous. This is useful when running rofi from a keybinding daemon.
2014-10-20 18:31:15 +00:00
### Debug
2014-10-20 18:29:26 +00:00
`-dump-xresources`
Dump the current active configuration in xresources format to the command-line.
## PATTERN
To launch commands (e.g. when using the ssh launcher) the user can enter the used commandline,
the following keys can be used that will be replaced at runtime:
* `{host}`: The host to connect to.
* `{terminal}`: The configured terminal (See -terminal-emulator)
* `{ssh-client}`: The configured ssh client (See -ssh-client)
* `{cmd}`: The command to execute.
2014-05-22 08:37:25 +00:00
## Dmenu replacemnt
If `argv[0]` (calling command) is dmenu, **rofi** will start in dmenu mode.
This way it can be used as a drop-in replacement for dmenu. just copy or symlink **rofi** to dmenu in `$PATH`.
ln -s /usr/bin/dmenu /usr/bin/rofi
## Signals
`HUP`
If in daemon mode, reload the configuration from Xresources. (commandline arguments still
override xresources).
2015-01-22 14:25:40 +00:00
## Colors
Rofi has an experimental mode for a 'nicer' transparency. The idea is that you can make the
2015-01-27 09:02:12 +00:00
background of the window transparent but the text not. This way, in contrast to the `-opacity`
2015-01-22 14:25:40 +00:00
option, the text is still fully visible and readable.
To use this there are 2 requirements: 1. Your Xserver supports TrueColor, 2. You are running a
composite manager. If this is satisfied you can use the following format for colors:
argb:FF444444
The first two fields specify the alpha level. This determines how much the background shines through
the color (00 everything, FF nothing). E.g. 'argb:00FF0000' gives you a bright red color with the
background shining through. If you want a dark greenish transparent color use: 'argb:dd2c3311'. This
2015-01-27 09:02:12 +00:00
can be done for any color; it is therefore possible to have solid borders, the selected row solid,
2015-01-22 14:25:40 +00:00
and the others slightly transparent.
2014-08-05 18:09:39 +00:00
## Keybindings
2014-05-22 08:37:25 +00:00
2014-08-05 18:09:39 +00:00
Rofi supports the following keybindings:
2014-08-03 19:51:31 +00:00
* `Ctrl-v, Insert`: Paste clipboard
* `Ctrl-Shift-v, Shift-Insert`: Paste primary selection
* `Ctrl-u`: Clear the line
* `Ctrl-a`: Beginning of line
* `Ctrl-e`: End of line
* `Ctrl-f, Right`: Forward one character
* `Alt-f`: Forward one word
2014-08-03 19:51:31 +00:00
* `Ctrl-b, Left`: Back one character
* `Alt-b`: Back one word
2014-08-03 19:51:31 +00:00
* `Ctrl-d, Delete`: Delete character
* `Ctrl-Alt-d': Delete word
2014-08-03 19:51:31 +00:00
* `Ctrl-h, Backspace`: Backspace (delete previous character)
* `Ctrl-Alt-h`: Delete previous word
2014-08-03 19:51:31 +00:00
* `Ctrl-j,Ctrl-m,Enter`: Accept entry
* `Ctrl-n,Down`: Select next entry
* `Ctrl-p,Up`: Select previous entry
* `Page Up`: Go to the previous page
* `Page Down`: Go to the next page
* `Ctrl-Page Up`: Go to the previous column
* `Ctrl-Page Down`: Go to the next column
* `Ctrl-Enter`: Use entered text as command (in ssh/run modi)
* `Shift-Enter`: Launch the application in a terminal (in run mode)
2015-01-23 19:07:56 +00:00
* `Shift-Enter`: Return the selected entry and move to the next item while keeping Rofi open. (in dmenu)
* `Shift-Right`: Switch to the next modi. The list can be customized with the `-switchers` argument.
* `Shift-Left`: Switch to the previous modi. The list can be customized with the `-switchers` argument.
* `Ctrl-Tab`: Switch to the next modi. The list can be customized with the `-switchers` argument.
* `Ctrl-Shift-Tab`: Switch to the previous modi. The list can be customized with the `-switchers` argument.
* `Ctrl-space`: Set selected item as input text.
2014-12-24 15:16:24 +00:00
* `Shift-Del`: Delete entry from history.
2015-01-12 13:13:46 +00:00
* `grave`: Toggle case sensitivity.
2014-08-05 18:09:39 +00:00
2014-11-08 12:51:41 +00:00
## FAQ
`Text in window switcher is not nicely lined out`
Try using a mono-space font.
2014-12-07 15:04:22 +00:00
`Rofi is completely black.`
Check quotes used on the commandline: e.g. used “ instead of ".
2014-08-05 18:09:39 +00:00
## WEBSITE
**rofi** website can be found at [here](https://davedavenport.github.io/rofi/)
2014-08-03 19:51:31 +00:00
**rofi** bugtracker can be found [here](https://github.com/DaveDavenport/rofi/issues)
2014-08-01 21:29:01 +00:00
## AUTHOR
2014-05-22 08:37:25 +00:00
Qball Cow <qball@gmpclient.org>
Original code based on work by: Sean Pringle <sean.pringle@gmail.com>