2024-03-05 10:22:47 -05:00
|
|
|
# rofi-keys(5)
|
2021-12-15 15:31:44 -05:00
|
|
|
|
|
|
|
## NAME
|
|
|
|
|
2023-03-27 06:08:54 -04:00
|
|
|
**rofi keys** - Rofi Key and Mouse bindings
|
2021-12-15 15:31:44 -05:00
|
|
|
|
|
|
|
## DESCRIPTION
|
|
|
|
|
|
|
|
**rofi** supports overriding of any of it key and mouse binding.
|
|
|
|
|
|
|
|
## Setting binding
|
|
|
|
|
|
|
|
Bindings can be done on the commandline (-{bindingname}):
|
|
|
|
|
|
|
|
```bash
|
|
|
|
rofi -show run -kb-accept-entry 'Control+Shift+space'
|
|
|
|
```
|
|
|
|
|
|
|
|
or via the configuration file:
|
|
|
|
|
|
|
|
```css
|
|
|
|
configuration {
|
|
|
|
kb-accept-entry: "Control+Shift+space";
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
The key can be set by its name (see above) or its keycode:
|
|
|
|
|
|
|
|
```css
|
|
|
|
configuration {
|
|
|
|
kb-accept-entry: "Control+Shift+[65]";
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
An easy way to look up keycode is xev(1).
|
|
|
|
|
|
|
|
Multiple keys can be specified for an action as a comma separated list:
|
|
|
|
|
|
|
|
```css
|
|
|
|
configuration {
|
|
|
|
kb-accept-entry: "Control+Shift+space,Return";
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
By Default **rofi** reacts on pressing, to act on the release of all keys
|
|
|
|
prepend the binding with `!`:
|
|
|
|
|
|
|
|
```css
|
|
|
|
configuration {
|
|
|
|
kb-accept-entry: "!Control+Shift+space,Return";
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2022-10-11 03:19:35 -04:00
|
|
|
## Unsetting a binding
|
|
|
|
|
|
|
|
To unset a binding, pass an empty string.
|
|
|
|
|
|
|
|
```css
|
|
|
|
configuration {
|
|
|
|
kb-clear-line: "";
|
|
|
|
}
|
|
|
|
```
|
2021-12-15 15:31:44 -05:00
|
|
|
|
|
|
|
## Keyboard Bindings
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-primary-paste`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Paste primary selection
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Control+V,Shift+Insert
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-secondary-paste`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Paste clipboard
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Control+v,Insert
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-secondary-copy`
|
2022-08-22 15:44:52 -04:00
|
|
|
|
|
|
|
Copy current selection to clipboard
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Control+c
|
2022-08-22 15:44:52 -04:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-clear-line`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Clear input line
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Control+w
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-move-front`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Beginning of line
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Control+a
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-move-end`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
End of line
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Control+e
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-move-word-back`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Move back one word
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Alt+b,Control+Left
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-move-word-forward`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Move forward one word
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Alt+f,Control+Right
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-move-char-back`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Move back one char
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Left,Control+b
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-move-char-forward`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Move forward one char
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Right,Control+f
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-remove-word-back`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Delete previous word
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Control+Alt+h,Control+BackSpace
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-remove-word-forward`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Delete next word
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Control+Alt+d
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-remove-char-forward`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Delete next char
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Delete,Control+d
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-remove-char-back`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Delete previous char
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: BackSpace,Shift+BackSpace,Control+h
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-remove-to-eol`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Delete till the end of line
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Control+k
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-remove-to-sol`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Delete till the start of line
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Control+u
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-accept-entry`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Accept entry
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Control+j,Control+m,Return,KP\_Enter
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-accept-custom`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2022-02-23 16:42:56 -05:00
|
|
|
Use entered text as command (in ssh/run modes)
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Control+Return
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-accept-custom-alt`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2022-02-23 16:42:56 -05:00
|
|
|
Use entered text as command (in ssh/run modes)
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Control+Shift+Return
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-accept-alt`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Use alternate accept command.
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Shift+Return
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-delete-entry`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Delete entry from history
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Shift+Delete
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-mode-next`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Switch to the next mode.
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Shift+Right,Control+Tab
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-mode-previous`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Switch to the previous mode.
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Shift+Left,Control+ISO\_Left\_Tab
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-mode-complete`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Start completion for mode.
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Control+l
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-row-left`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Go to the previous column
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Control+Page\_Up
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-row-right`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Go to the next column
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Control+Page\_Down
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-row-up`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Select previous entry
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Up,Control+p
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-row-down`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Select next entry
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Down,Control+n
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-row-tab`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Go to next row, if one left, accept it, if no left next mode.
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default:
|
2022-03-07 14:37:58 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-element-next`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2022-03-07 14:37:58 -05:00
|
|
|
Go to next row.
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Tab
|
2022-03-07 14:37:58 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-element-prev`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2022-03-07 14:37:58 -05:00
|
|
|
Go to previous row.
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: ISO\_Left\_Tab
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-page-prev`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Go to the previous page
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Page\_Up
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-page-next`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Go to the next page
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Page\_Down
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-row-first`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Go to the first entry
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Home,KP\_Home
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-row-last`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Go to the last entry
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: End,KP\_End
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-row-select`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Set selected item as input text
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Control+space
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-screenshot`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Take a screenshot of the rofi window
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Alt+S
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-ellipsize`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Toggle between ellipsize modes for displayed data
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Alt+period
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-toggle-case-sensitivity`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Toggle case sensitivity
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: grave,dead\_grave
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-toggle-sort`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2023-07-23 12:28:55 -04:00
|
|
|
Toggle filtered menu sort
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Alt+grave
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-cancel`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Quit rofi
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Escape,Control+g,Control+bracketleft
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-custom-1`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Custom keybinding 1
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Alt+1
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-custom-2`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Custom keybinding 2
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Alt+2
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-custom-3`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Custom keybinding 3
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Alt+3
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-custom-4`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Custom keybinding 4
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Alt+4
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-custom-5`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Custom Keybinding 5
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Alt+5
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-custom-6`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Custom keybinding 6
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Alt+6
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-custom-7`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Custom Keybinding 7
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Alt+7
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-custom-8`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Custom keybinding 8
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Alt+8
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-custom-9`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Custom keybinding 9
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Alt+9
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-custom-10`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Custom keybinding 10
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Alt+0
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-custom-11`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Custom keybinding 11
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Alt+exclam
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-custom-12`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Custom keybinding 12
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Alt+at
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-custom-13`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Custom keybinding 13
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Alt+numbersign
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-custom-14`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Custom keybinding 14
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Alt+dollar
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-custom-15`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Custom keybinding 15
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Alt+percent
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-custom-16`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Custom keybinding 16
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Alt+dead\_circumflex
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-custom-17`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Custom keybinding 17
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Alt+ampersand
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-custom-18`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Custom keybinding 18
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Alt+asterisk
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-custom-19`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Custom Keybinding 19
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Alt+parenleft
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-select-1`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Select row 1
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Super+1
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-select-2`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Select row 2
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Super+2
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-select-3`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Select row 3
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Super+3
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-select-4`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Select row 4
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Super+4
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-select-5`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Select row 5
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Super+5
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-select-6`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Select row 6
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Super+6
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-select-7`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Select row 7
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Super+7
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-select-8`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Select row 8
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Super+8
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-select-9`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Select row 9
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Super+9
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-select-10`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Select row 10
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Super+0
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-entry-history-up`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2023-01-22 11:25:17 -05:00
|
|
|
Go up in the entry history.
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Control+Up
|
2023-01-22 11:25:17 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`kb-entry-history-down`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2023-01-22 11:25:17 -05:00
|
|
|
Go down in the entry history.
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Control+Down
|
2023-01-22 11:25:17 -05:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
## Mouse Bindings
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`ml-row-left`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Go to the previous column
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: ScrollLeft
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`ml-row-right`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Go to the next column
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: ScrollRight
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`ml-row-up`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Select previous entry
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: ScrollUp
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`ml-row-down`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Select next entry
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: ScrollDown
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`me-select-entry`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Select hovered row
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: MousePrimary
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`me-accept-entry`
|
2023-03-27 06:08:54 -04:00
|
|
|
|
2021-12-15 15:31:44 -05:00
|
|
|
Accept hovered row
|
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: MouseDPrimary
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
`me-accept-custom`
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2023-03-27 06:08:54 -04:00
|
|
|
Accept hovered row with custom action
|
2021-12-15 15:31:44 -05:00
|
|
|
|
2024-03-05 10:22:47 -05:00
|
|
|
Default: Control+MouseDPrimary
|
2021-12-15 15:31:44 -05:00
|
|
|
|
|
|
|
## SEE ALSO
|
|
|
|
|
2023-03-27 06:08:54 -04:00
|
|
|
rofi(1), rofi-sensible-terminal(1), rofi-theme(5), rofi-script(5)
|
2021-12-15 15:31:44 -05:00
|
|
|
|
|
|
|
## AUTHOR
|
|
|
|
|
|
|
|
Qball Cow <qball@gmpclient.org>
|
|
|
|
|
|
|
|
Rasmus Steinke <rasi@xssn.at>
|
|
|
|
|
2022-02-26 11:02:26 -05:00
|
|
|
Morgane Glidic <sardemff7+rofi@sardemff7.net>
|
2021-12-15 15:31:44 -05:00
|
|
|
|
|
|
|
Original code based on work by: Sean Pringle <sean.pringle@gmail.com>
|
|
|
|
|
|
|
|
For a full list of authors, check the AUTHORS file.
|