mirror of
https://github.com/swaywm/sway.git
synced 2024-11-04 23:43:14 +00:00
input and seat command docs
This commit is contained in:
parent
b3a0309f26
commit
2624f55f8d
|
@ -1,5 +1,5 @@
|
||||||
/////
|
/////
|
||||||
vim:set ts=4 sw=4 tw=82 noet:
|
vim:set ft=asciidoc ts=4 sw=4 tw=82 noet:
|
||||||
/////
|
/////
|
||||||
sway-input (5)
|
sway-input (5)
|
||||||
==============
|
==============
|
||||||
|
@ -11,12 +11,37 @@ sway-input - input configuration file and commands
|
||||||
Description
|
Description
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
Sway allows for configuration of libinput devices within the sway configuration file.
|
Sway allows for configuration of devices within the sway configuration file.
|
||||||
sway-input commands must be used inside an _input { }_ block in the config.
|
sway-input commands must be used inside an _input { }_ block in the config.
|
||||||
To obtain a list of available device identifiers, run **swaymsg -t get_inputs**.
|
To obtain a list of available device identifiers, run **swaymsg -t get_inputs**.
|
||||||
|
|
||||||
Commands
|
Input Commands
|
||||||
--------
|
--------------
|
||||||
|
|
||||||
|
Keyboard Configuration
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
For more information on these xkb configuration options, see
|
||||||
|
**xkeyboard-config**(7).
|
||||||
|
|
||||||
|
**input** <identifier> xkb_layout <layout_name>::
|
||||||
|
Sets the layout of the keyboard like _us_ or _de_.
|
||||||
|
|
||||||
|
**input** <identifier> xkb_model <model_name>::
|
||||||
|
Sets the model of the keyboard. This has an influence for some extra keys your
|
||||||
|
keyboard might have.
|
||||||
|
|
||||||
|
**input** <identifier> xkb_options <options>::
|
||||||
|
Sets extra xkb configuration options for the keyboard.
|
||||||
|
|
||||||
|
**input** <identifier> xkb_rules <rules>::
|
||||||
|
Sets files of rules to be used for keyboard mapping composition.
|
||||||
|
|
||||||
|
**input** <identifier> xkb_variant <variant>::
|
||||||
|
Sets the variant of the keyboard like _dvorak_ or _colemak_.
|
||||||
|
|
||||||
|
Libinput Configuration
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
**input** <identifier> accel_profile <adaptive|flat>::
|
**input** <identifier> accel_profile <adaptive|flat>::
|
||||||
Sets the pointer acceleration profile for the specified input device.
|
Sets the pointer acceleration profile for the specified input device.
|
||||||
|
@ -53,6 +78,23 @@ Commands
|
||||||
**input** <identifier> tap <enabled|disabled>::
|
**input** <identifier> tap <enabled|disabled>::
|
||||||
Enables or disables tap for specified input device.
|
Enables or disables tap for specified input device.
|
||||||
|
|
||||||
|
Seat Configuration
|
||||||
|
------------------
|
||||||
|
|
||||||
|
Configure options for multiseat mode. sway-seat commands must be used inside a
|
||||||
|
_seat { }_ block in the config.
|
||||||
|
|
||||||
|
A _seat_ is a collection of input devices that act independently of each other.
|
||||||
|
Seats are identified by name and the default seat is _seat0_ if no seats are
|
||||||
|
configured. Each seat has an independent keyboard focus and a separate cursor that
|
||||||
|
is controlled by the pointer devices of the seat. This is useful for multiple
|
||||||
|
people using the desktop at the same time with their own devices (each sitting in
|
||||||
|
their own "seat").
|
||||||
|
|
||||||
|
**seat** <name> attach <input_identifier>::
|
||||||
|
Attach an input device to this seat by its input identifier. A special value
|
||||||
|
of _*_ will attach all devices to the seat.
|
||||||
|
|
||||||
See Also
|
See Also
|
||||||
--------
|
--------
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/////
|
/////
|
||||||
vim:set ts=4 sw=4 tw=82 noet:
|
vim:set ft=asciidoc ts=4 sw=4 tw=82 noet:
|
||||||
/////
|
/////
|
||||||
:quotes.~:
|
:quotes.~:
|
||||||
|
|
||||||
|
@ -93,27 +93,6 @@ The following environment variables have an effect on sway:
|
||||||
*SWAYSOCK*::
|
*SWAYSOCK*::
|
||||||
Specifies the path to the sway IPC socket.
|
Specifies the path to the sway IPC socket.
|
||||||
|
|
||||||
*WLC_DRM_DEVICE*::
|
|
||||||
Specifies the device to use in DRM mode.
|
|
||||||
|
|
||||||
*WLC_SHM*::
|
|
||||||
Set 1 to force EGL clients to use shared memory.
|
|
||||||
|
|
||||||
*WLC_OUTPUTS*::
|
|
||||||
Number of fake outputs to use when running in X11 mode.
|
|
||||||
|
|
||||||
*WLC_XWAYLAND*::
|
|
||||||
Set to 0 to disable Xwayland support.
|
|
||||||
|
|
||||||
*WLC_LIBINPUT*::
|
|
||||||
Set to 1 to force libinput (even in X11 mode).
|
|
||||||
|
|
||||||
*WLC_REPEAT_DELAY*::
|
|
||||||
Configures the keyboard repeat delay.
|
|
||||||
|
|
||||||
*WLC_REPEAT_RATE*::
|
|
||||||
Configures the keyboard repeat rate.
|
|
||||||
|
|
||||||
*XKB_DEFAULT_RULES*, *XKB_DEFAULT_MODEL*, *XKB_DEFAULT_LAYOUT*, *XKB_DEFAULT_VARIANT*, *XKB_DEFAULT_OPTIONS*::
|
*XKB_DEFAULT_RULES*, *XKB_DEFAULT_MODEL*, *XKB_DEFAULT_LAYOUT*, *XKB_DEFAULT_VARIANT*, *XKB_DEFAULT_OPTIONS*::
|
||||||
Configures the xkb keyboard settings. See xkeyboard-config(7).
|
Configures the xkb keyboard settings. See xkeyboard-config(7).
|
||||||
|
|
||||||
|
|
|
@ -312,7 +312,7 @@ The default colors are:
|
||||||
**hide_edge_borders** <none|vertical|horizontal|both|smart>::
|
**hide_edge_borders** <none|vertical|horizontal|both|smart>::
|
||||||
Hide window borders adjacent to the screen edges. Default is _none_.
|
Hide window borders adjacent to the screen edges. Default is _none_.
|
||||||
|
|
||||||
**input** <input device> <block of commands>::
|
**input** <input_device> <block of commands>::
|
||||||
Append _{_ to this command, the following lines will be commands to configure
|
Append _{_ to this command, the following lines will be commands to configure
|
||||||
the named input device, and _}_ on its own line will close the block.
|
the named input device, and _}_ on its own line will close the block.
|
||||||
+
|
+
|
||||||
|
@ -320,6 +320,11 @@ The default colors are:
|
||||||
+
|
+
|
||||||
See **sway-input**(5) for details.
|
See **sway-input**(5) for details.
|
||||||
|
|
||||||
|
**seat** <seat_name> <block of commands>::
|
||||||
|
Append _{_ to this command, the following lines will be commands to configure
|
||||||
|
the named seat, and _}_ on its own line will close the block.
|
||||||
|
See **sway-input**(5) for details.
|
||||||
|
|
||||||
**kill**::
|
**kill**::
|
||||||
Kills (force-closes) the currently-focused container and all of its children.
|
Kills (force-closes) the currently-focused container and all of its children.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue