2021-11-01 10:28:43 +00:00
|
|
|
RIVERCTL(1) "github.com/riverwm/river" "General Commands Manual"
|
2020-12-12 23:51:51 +00:00
|
|
|
|
2020-06-15 07:51:23 +00:00
|
|
|
# NAME
|
|
|
|
|
2020-12-30 22:10:41 +00:00
|
|
|
riverctl - command-line interface for controlling river
|
2020-06-15 07:51:23 +00:00
|
|
|
|
|
|
|
# SYNOPSIS
|
|
|
|
|
2021-07-24 17:42:34 +00:00
|
|
|
*riverctl* [_options_] _command_ [_command specific arguments_]
|
2020-06-15 07:51:23 +00:00
|
|
|
|
|
|
|
# DESCRIPTION
|
|
|
|
|
2020-12-30 22:10:41 +00:00
|
|
|
*riverctl* is a command-line utility used to control and configure river
|
|
|
|
over the Wayland protocol.
|
2020-06-15 07:51:23 +00:00
|
|
|
|
2021-07-24 17:42:34 +00:00
|
|
|
# OPTIONS
|
|
|
|
|
2021-10-31 23:34:15 +00:00
|
|
|
*-h*
|
2021-07-24 17:42:34 +00:00
|
|
|
Print a help message and exit.
|
|
|
|
|
|
|
|
*-version*
|
|
|
|
Print the version number and exit.
|
|
|
|
|
2020-06-15 07:51:23 +00:00
|
|
|
# COMMANDS
|
|
|
|
|
|
|
|
## ACTIONS
|
|
|
|
|
|
|
|
*close*
|
|
|
|
Close the focused view.
|
|
|
|
|
2021-09-06 13:28:05 +00:00
|
|
|
*csd-filter-add* *app-id*|*title* _pattern_
|
|
|
|
Add _pattern_ to the CSD filter list. Views with this _pattern_ are told to
|
|
|
|
use client side decoration instead of the default server side decoration.
|
|
|
|
Note that this affects new views as well as already existing ones. Title
|
|
|
|
updates are not taken into account.
|
|
|
|
|
|
|
|
*csd-filter-remove* *app-id*|*title* _pattern_
|
|
|
|
Remove _pattern_ from the CSD filter list. Note that this affects new views
|
|
|
|
as well as already existing ones.
|
2020-07-16 17:45:45 +00:00
|
|
|
|
2020-06-15 07:51:23 +00:00
|
|
|
*exit*
|
|
|
|
Exit the compositor, terminating the Wayland session.
|
|
|
|
|
2021-08-31 19:26:17 +00:00
|
|
|
*float-filter-add* *app-id*|*title* _pattern_
|
|
|
|
Add a pattern to the float filter list. Note that this affects only new
|
|
|
|
views, not already existing ones. Title updates are also not taken into
|
|
|
|
account.
|
|
|
|
|
|
|
|
*float-filter-remove* *app-id*|*title* _pattern_
|
|
|
|
Remove an app-id or title from the float filter list. Note that this
|
|
|
|
affects only new views, not already existing ones.
|
2020-07-16 17:45:45 +00:00
|
|
|
|
2021-06-14 02:36:07 +00:00
|
|
|
*focus-output* *next*|*previous*|*up*|*right*|*down*|*left*
|
|
|
|
Focus the next or previous output or the closest output in any direction.
|
2020-06-15 07:51:23 +00:00
|
|
|
|
|
|
|
*focus-view* *next*|*previous*
|
2020-12-30 22:10:41 +00:00
|
|
|
Focus the next or previous view in the stack.
|
2020-06-15 07:51:23 +00:00
|
|
|
|
2020-10-07 01:00:57 +00:00
|
|
|
*move* *up*|*down*|*left*|*right* _delta_
|
2020-12-30 22:10:41 +00:00
|
|
|
Move the focused view in the specified direction by _delta_ logical
|
|
|
|
pixels. The view will be set to floating.
|
2020-10-07 01:00:57 +00:00
|
|
|
|
|
|
|
*resize* *horizontal*|*vertical* _delta_
|
2020-12-30 22:10:41 +00:00
|
|
|
Resize the focused view along the given axis by _delta_ logical
|
|
|
|
pixels. The view will be set to floating.
|
2020-10-07 01:00:57 +00:00
|
|
|
|
|
|
|
*snap* *up*|*down*|*left*|*right*
|
2020-12-30 22:10:41 +00:00
|
|
|
Snap the focused view to the specified screen edge. The view will
|
|
|
|
be set to floating.
|
2020-10-07 01:00:57 +00:00
|
|
|
|
2021-06-14 02:36:07 +00:00
|
|
|
*send-to-output* *next*|*previous*|*up*|*right*|*down*|*left*
|
|
|
|
Send the focused view to the next or previous output or the closest
|
|
|
|
output in any direction.
|
2020-06-15 07:51:23 +00:00
|
|
|
|
|
|
|
*spawn* _shell_command_
|
2021-07-15 22:00:28 +00:00
|
|
|
Run _shell_command_ using `/bin/sh -c _shell_command_`. Note that
|
|
|
|
*spawn* only takes a single argument. To spawn a command taking
|
|
|
|
multiple arguments, wrapping the command in quotes is recommended.
|
2020-06-15 07:51:23 +00:00
|
|
|
|
2020-10-25 11:41:19 +00:00
|
|
|
*swap* *next*|*previous*
|
2020-12-30 22:10:41 +00:00
|
|
|
Swap the focused view with the next/previous visible non-floating
|
|
|
|
view. If the first/last view in the stack is focused, wrap.
|
2020-10-25 11:41:19 +00:00
|
|
|
|
2020-06-15 07:51:23 +00:00
|
|
|
*toggle-float*
|
2020-12-30 22:10:41 +00:00
|
|
|
Toggle the floating state of the focused view.
|
2020-06-15 07:51:23 +00:00
|
|
|
|
2020-06-28 23:50:26 +00:00
|
|
|
*toggle-fullscreen*
|
|
|
|
Toggle the fullscreen state of the focused view.
|
|
|
|
|
2020-06-15 07:51:23 +00:00
|
|
|
*zoom*
|
2020-12-30 22:10:41 +00:00
|
|
|
Bump the focused view to the top of the layout stack. If the top
|
|
|
|
view in the stack is already focused, bump the second view.
|
2020-06-15 07:51:23 +00:00
|
|
|
|
2021-04-26 14:35:26 +00:00
|
|
|
*default-layout* _namespace_
|
|
|
|
Set the layout namespace to be used by all outputs by default.
|
|
|
|
|
|
|
|
*output-layout* _namespace_
|
|
|
|
Set the layout namespace of currently focused output, overriding
|
|
|
|
the value set with *default-layout* if any.
|
|
|
|
|
2021-07-15 11:22:37 +00:00
|
|
|
*send-layout-cmd* _namespace_ _command_
|
2021-10-31 21:32:59 +00:00
|
|
|
Send _command_ to the layout generator on the currently focused output
|
|
|
|
with the given _namespace_, if any. What commands a layout generator
|
|
|
|
understands depends on the layout generator. For rivertile, see the
|
2021-07-15 11:22:37 +00:00
|
|
|
documentation in the *rivertile*(1) man page.
|
2021-04-26 19:03:28 +00:00
|
|
|
|
2020-12-30 13:25:37 +00:00
|
|
|
## TAG MANAGEMENT
|
2020-06-15 07:51:23 +00:00
|
|
|
|
2020-12-30 13:25:37 +00:00
|
|
|
Tags are similar to workspaces but more flexible. You can assign views multiple
|
|
|
|
tags and focus multiple tags simultaneously. Bitfields are used to describe
|
|
|
|
sets of tags when interfacing with river. As such, the following commands
|
|
|
|
take a normal base 10 number as their argument but the semantics are best
|
|
|
|
understood in binary. The binary number 000000001 represents a set containing
|
|
|
|
only tag 1 while 100001101 represents a set containing tags 1, 3, 4, and 9.
|
2020-06-15 07:51:23 +00:00
|
|
|
|
2021-01-02 08:43:53 +00:00
|
|
|
When a view spawns it is assigned the currently focused tags of the output.
|
|
|
|
|
2020-12-30 13:25:37 +00:00
|
|
|
At least one tag must always be focused and each view must be assigned at
|
|
|
|
least one tag. Operations that would violate either of these requirements
|
|
|
|
are ignored by river.
|
2020-06-15 07:51:23 +00:00
|
|
|
|
2020-12-30 13:25:37 +00:00
|
|
|
*set-focused-tags* _tags_
|
|
|
|
Show views with tags corresponding to the set bits of _tags_ on the
|
|
|
|
currently focused output.
|
|
|
|
|
|
|
|
*set-view-tags* _tags_
|
|
|
|
Assign the currently focused view the tags corresponding to the set
|
|
|
|
bits of _tags_.
|
2020-06-15 07:51:23 +00:00
|
|
|
|
2020-12-30 13:25:37 +00:00
|
|
|
*toggle-focused-tags* _tags_
|
|
|
|
Toggle visibility of views with tags corresponding to the set bits
|
|
|
|
of _tags_ on the currently focused output.
|
2020-06-15 07:51:23 +00:00
|
|
|
|
2020-12-30 13:25:37 +00:00
|
|
|
*toggle-view-tags* _tags_
|
|
|
|
Toggle the tags of the currently focused view corresponding to the
|
|
|
|
set bits of _tags_.
|
2020-06-15 07:51:23 +00:00
|
|
|
|
2021-01-02 08:43:53 +00:00
|
|
|
*spawn-tagmask* _tagmask_
|
|
|
|
Set a _tagmask_ to filter the tags assigned to newly spawned views
|
|
|
|
on the focused output. This mask will be applied to the tags of
|
|
|
|
new views with a bitwise and. If, for example, the tags 000011111
|
|
|
|
are focused on an output with a _tagmask_ of 111110001, a new view
|
|
|
|
will be assigned the tags 000010001. If no tags would remain after
|
|
|
|
filtering, the _tagmask_ is ignored.
|
|
|
|
|
2021-07-07 06:51:00 +00:00
|
|
|
*focus-previous-tags*
|
|
|
|
Sets tags to their previous value on the currently focused output,
|
|
|
|
allowing jumping back and forth between 2 tag setups.
|
|
|
|
|
2021-09-11 20:21:48 +00:00
|
|
|
*send-to-previous-tags*
|
|
|
|
Assign the currently focused view the previous tags of the currently
|
|
|
|
focused output.
|
|
|
|
|
2020-12-30 22:10:41 +00:00
|
|
|
## MAPPINGS
|
2020-06-15 07:51:23 +00:00
|
|
|
|
2020-12-30 22:10:41 +00:00
|
|
|
Mappings are modal in river. Each mapping is associated with a mode and is
|
2021-08-18 20:07:01 +00:00
|
|
|
only active while in that mode. There are two special modes: "normal" and
|
2021-10-31 23:29:06 +00:00
|
|
|
"locked". The normal mode is the initial mode on startup. The locked mode
|
|
|
|
is automatically entered while an input inhibitor (such as a lockscreen)
|
|
|
|
is active. It cannot be entered or exited manually.
|
2020-06-15 07:51:23 +00:00
|
|
|
|
2020-12-30 22:10:41 +00:00
|
|
|
The following modifiers are available for use in mappings:
|
2020-06-15 07:51:23 +00:00
|
|
|
|
|
|
|
- Shift
|
|
|
|
- Lock (Caps lock)
|
|
|
|
- Control (Ctrl)
|
2020-06-17 08:39:48 +00:00
|
|
|
- Mod1 (Alt)
|
2020-06-15 07:51:23 +00:00
|
|
|
- Mod2
|
|
|
|
- Mod3
|
|
|
|
- Mod4 (Super, Logo, Windows)
|
|
|
|
- Mod5
|
2020-12-30 22:10:41 +00:00
|
|
|
- None (Create a mapping without modifiers)
|
2020-06-15 07:51:23 +00:00
|
|
|
|
2020-12-30 22:10:41 +00:00
|
|
|
Keys are specified by their XKB keysym name. See
|
|
|
|
_/usr/include/xkbcommon/xkbcommon-keysyms.h_ for the complete list.
|
2020-06-15 07:51:23 +00:00
|
|
|
|
2020-12-30 22:10:41 +00:00
|
|
|
Mouse buttons are specified by linux input event code names. The most commonly
|
|
|
|
used values are:
|
2020-08-24 12:52:47 +00:00
|
|
|
|
|
|
|
- BTN_LEFT - left mouse button
|
|
|
|
- BTN_RIGHT - right mouse button
|
|
|
|
- BTN_MIDDLE - middle mouse button
|
|
|
|
|
2020-12-30 22:10:41 +00:00
|
|
|
A complete list may be found in _/usr/include/linux/input-event-codes.h_
|
2020-08-24 12:52:47 +00:00
|
|
|
|
2020-12-30 22:10:41 +00:00
|
|
|
*declare-mode* _name_
|
|
|
|
Create a new mode called _name_.
|
2020-08-24 12:52:47 +00:00
|
|
|
|
2020-12-30 22:10:41 +00:00
|
|
|
*enter-mode* _name_
|
2021-03-16 15:16:06 +00:00
|
|
|
Switch to given mode if it exists.
|
2020-08-24 12:52:47 +00:00
|
|
|
|
2021-08-15 12:49:11 +00:00
|
|
|
*map* [_-release_|_-repeat_] _mode_ _modifiers_ _key_ _command_
|
2020-12-30 22:10:41 +00:00
|
|
|
Run _command_ when _key_ is pressed while _modifiers_ are held down
|
|
|
|
and in the specified _mode_.
|
2020-10-03 20:09:15 +00:00
|
|
|
|
2020-12-30 22:10:41 +00:00
|
|
|
- _-release_: if passed activate on key release instead of key press
|
2021-08-15 12:49:11 +00:00
|
|
|
- _-repeat_: if passed activate repeatedly until key release; may not
|
|
|
|
be used with -release
|
2020-12-30 22:10:41 +00:00
|
|
|
- _mode_: name of the mode for which to create the mapping
|
|
|
|
- _modifiers_: one or more of the modifiers listed above, separated
|
|
|
|
by a plus sign (+).
|
|
|
|
- _key_: an XKB keysym name as described above
|
|
|
|
- _command_: any command that may be run with riverctl
|
2020-10-03 20:09:15 +00:00
|
|
|
|
2020-12-30 22:10:41 +00:00
|
|
|
*map-pointer* _mode_ _modifiers_ _button_ _action_
|
|
|
|
Move or resize views when _button_ and _modifiers_ are held down
|
|
|
|
while in the specified _mode_.
|
|
|
|
|
|
|
|
- _mode_: name of the mode for which to create the mapping
|
|
|
|
- _modifiers_: one or more of the modifiers listed above, separated
|
|
|
|
by a plus sign (+).
|
|
|
|
- _button_: the name of a linux input event code as described above
|
|
|
|
- _action_: one of the following values:
|
|
|
|
- move-view
|
|
|
|
- resize-view
|
|
|
|
|
|
|
|
*unmap* [_-release_] _mode_ _modifiers_ _key_
|
|
|
|
Remove the mapping defined by the arguments:
|
|
|
|
|
|
|
|
- _-release_: if passed unmap the key release instead of the key press
|
|
|
|
- _mode_: name of the mode for which to remove the mapping
|
|
|
|
- _modifiers_: one or more of the modifiers listed above, separated
|
|
|
|
by a plus sign (+).
|
|
|
|
- _key_: an XKB keysym name as described above
|
|
|
|
|
|
|
|
*unmap-pointer* _mode_ _modifiers_ _button_
|
|
|
|
Remove the pointer mapping defined by the arguments:
|
|
|
|
|
|
|
|
- _mode_: name of the mode for which to remove the mapping
|
|
|
|
- _modifiers_: one or more of the modifiers listed above, separated
|
|
|
|
by a plus sign (+).
|
|
|
|
- _button_: the name of a linux input event code as described above
|
|
|
|
|
|
|
|
## CONFIGURATION
|
|
|
|
|
|
|
|
*attach-mode* *top*|*bottom*
|
2021-06-08 07:50:42 +00:00
|
|
|
Configure where new views should attach to the view stack.
|
2020-12-30 22:10:41 +00:00
|
|
|
|
2021-07-26 18:36:46 +00:00
|
|
|
*background-color* _0xRRGGBB_|_0xRRGGBBAA_
|
2020-12-30 22:10:41 +00:00
|
|
|
Set the background color.
|
|
|
|
|
2021-07-26 18:36:46 +00:00
|
|
|
*border-color-focused* _0xRRGGBB_|_0xRRGGBBAA_
|
2020-12-30 22:10:41 +00:00
|
|
|
Set the border color of focused views.
|
|
|
|
|
2021-07-26 18:36:46 +00:00
|
|
|
*border-color-unfocused* _0xRRGGBB_|_0xRRGGBBAA_
|
2020-12-30 22:10:41 +00:00
|
|
|
Set the border color of unfocused views.
|
|
|
|
|
2021-08-12 14:16:23 +00:00
|
|
|
*border-color-urgent* _0xRRGGBB_|_0xRRGGBBAA_
|
|
|
|
Set the border color of urgent views.
|
|
|
|
|
2020-12-30 22:10:41 +00:00
|
|
|
*border-width* _pixels_
|
|
|
|
Set the border width to _pixels_.
|
|
|
|
|
2021-07-29 12:05:17 +00:00
|
|
|
*focus-follows-cursor* *disabled*|*normal*
|
|
|
|
There are two available modes:
|
2020-12-30 22:10:41 +00:00
|
|
|
|
|
|
|
- _disabled_: Moving the cursor does not affect focus. This is
|
2021-05-07 01:46:26 +00:00
|
|
|
the default.
|
2020-12-30 22:10:41 +00:00
|
|
|
- _normal_: Moving the cursor over a view will focus that view.
|
|
|
|
Moving the cursor within a view will not re-focus that view if
|
|
|
|
focus has moved elsewhere.
|
|
|
|
|
|
|
|
If the view to be focused is on an output that does not have focus,
|
|
|
|
focus is switched to that output.
|
|
|
|
|
2021-05-07 01:46:26 +00:00
|
|
|
*set-cursor-warp* *disabled*|*on-output-change*
|
|
|
|
Set the cursor warp mode. There are two available modes:
|
|
|
|
|
|
|
|
- _disabled_: Cursor will not be warped. This is the default.
|
|
|
|
- _on-output-change_: When a different output is focused, the cursor will be
|
|
|
|
warped to its center.
|
|
|
|
|
2020-11-18 14:28:33 +00:00
|
|
|
*set-repeat* _rate_ _delay_
|
|
|
|
Set the keyboard repeat rate to _rate_ key repeats per second and
|
|
|
|
repeat delay to _delay_ milliseconds.
|
|
|
|
|
2020-07-14 15:34:29 +00:00
|
|
|
*xcursor-theme* _theme_name_ [_size_]
|
2020-12-12 23:51:51 +00:00
|
|
|
Set the xcursor theme to _theme_name_ and optionally set the _size_.
|
2020-12-30 22:10:41 +00:00
|
|
|
The theme of the default seat determines the default for Xwayland
|
|
|
|
and is made available through the _XCURSOR_THEME_ and _XCURSOR_SIZE_
|
2020-12-12 23:51:51 +00:00
|
|
|
environment variables.
|
2020-07-14 15:34:29 +00:00
|
|
|
|
2021-06-08 15:53:40 +00:00
|
|
|
## INPUT CONFIGURATION
|
|
|
|
|
2021-06-10 07:38:17 +00:00
|
|
|
*list-inputs*
|
|
|
|
List all input devices.
|
|
|
|
|
2021-06-12 11:58:58 +00:00
|
|
|
*list-input-configs*
|
|
|
|
List all input configurations.
|
|
|
|
|
2021-06-08 15:53:40 +00:00
|
|
|
The _input_ command can be used to create a configuration rule for an input
|
|
|
|
device identified by its _name_.
|
|
|
|
|
|
|
|
A list of all device properties that can be configured maybe found below.
|
|
|
|
However note that not every input device supports every property.
|
|
|
|
|
|
|
|
*input* _name_ *events* *enabled*|*disabled*|*disabled-on-external-mouse*
|
|
|
|
Configure whether the input devices events will be used by river.
|
|
|
|
|
|
|
|
*input* _name_ *accel-profile* *none*|*flat*|*adaptive*
|
|
|
|
Set the pointer acceleration profile of the input device.
|
|
|
|
|
|
|
|
*input* _name_ *pointer-accel* _factor_
|
|
|
|
Set the pointer acceleration factor of the input device. Needs a float
|
|
|
|
between -1.0 and 1.0.
|
|
|
|
|
|
|
|
*input* _name_ *click-method* *none*|*button-areas*|*clickfinger*
|
|
|
|
Set the click method of the input device.
|
|
|
|
|
|
|
|
*input* _name_ *drag* *enabled*|*disabled*
|
|
|
|
Enable or disable the tap-and-drag functionality of the input device.
|
|
|
|
|
|
|
|
*input* _name_ *drag-lock* *enabled*|*disabled*
|
|
|
|
Enable or disable the drag lock functionality of the input device.
|
|
|
|
|
|
|
|
*input* _name_ *disable-while-typing* *enabled*|*disabled*
|
|
|
|
Enable or disable the disable-while-typing functionality of the input device.
|
|
|
|
|
|
|
|
*input* _name_ *middle-emulation* *enabled*|*disabled*
|
|
|
|
Enable or disable the middle click emulation functionality of the input device.
|
|
|
|
|
|
|
|
*input* _name_ *natural-scroll* *enabled*|*disabled*
|
|
|
|
Enable or disable the natural scroll functionality of the input device. If
|
|
|
|
active, the scroll direction is inverted.
|
|
|
|
|
|
|
|
*input* _name_ *left-handed* *enabled*|*disabled*
|
|
|
|
Enable or disable the left handed mode of the input device.
|
|
|
|
|
|
|
|
*input* _name_ *tap* *enabled*|*disabled*
|
|
|
|
Enable or disable the tap functionality of the input device.
|
|
|
|
|
|
|
|
*input* _name_ *tap-button-map* *left-right-middle*|*left-middle-right*
|
|
|
|
Configure the button mapping for tapping.
|
|
|
|
|
|
|
|
- _left-right-middle_: 1 finger tap equals left click, 2 finger tap equals
|
|
|
|
right click, 3 finger tap equals middle click.
|
|
|
|
- _left-middle-right_: 1 finger tap equals left click, 2 finger tap equals
|
|
|
|
middle click, 3 finger tap equals right click.
|
|
|
|
|
|
|
|
*input* _name_ *scroll-method* *none*|*two-finger*|*edge*|*button*
|
|
|
|
Set the scroll method of the input device.
|
|
|
|
|
|
|
|
- _none_: No scrolling
|
|
|
|
- _two-finger_: Scroll by swiping with two fingers simultaneously
|
|
|
|
- _edge_: Scroll by swiping along the edge
|
|
|
|
- _button_: Scroll with pointer movement while holding down a button
|
|
|
|
|
|
|
|
*input* _name_ *scroll-button* _button_
|
|
|
|
Set the scroll button of an input device. _button_ is the name of a linux
|
|
|
|
input event code.
|
|
|
|
|
2020-06-15 07:51:23 +00:00
|
|
|
# EXAMPLES
|
|
|
|
|
2021-10-04 09:10:20 +00:00
|
|
|
Bind Super+Return in normal mode to spawn a *foot*(1) terminal:
|
2020-06-15 07:51:23 +00:00
|
|
|
|
2021-10-04 09:10:20 +00:00
|
|
|
riverctl map normal Mod4 Return spawn 'foot --app-id=foobar'
|
2020-06-15 07:51:23 +00:00
|
|
|
|
2020-12-30 22:10:41 +00:00
|
|
|
See also the example init script at /etc/river/init.
|
2020-06-15 07:51:23 +00:00
|
|
|
|
2020-11-11 19:44:41 +00:00
|
|
|
# AUTHORS
|
|
|
|
|
2021-10-02 11:01:58 +00:00
|
|
|
Maintained by Isaac Freund <mail@isaacfreund.com> who is assisted by open
|
2020-11-11 19:44:41 +00:00
|
|
|
source contributors. For more information about river's development, see
|
2021-11-01 10:28:43 +00:00
|
|
|
<https://github.com/riverwm/river>.
|
2020-11-11 19:44:41 +00:00
|
|
|
|
2020-06-15 07:51:23 +00:00
|
|
|
# SEE ALSO
|
|
|
|
|
2020-10-02 13:53:08 +00:00
|
|
|
*river*(1), *rivertile*(1)
|