19 lines
434 B
Plaintext
19 lines
434 B
Plaintext
### Input configuration
|
|
#
|
|
# You can get the names of your inputs by running: swaymsg -t get_inputs
|
|
# Read `man 5 sway-input` for more information about this section.
|
|
|
|
# Beter touchpad support
|
|
input "2:7:SynPS/2_Synaptics_TouchPad" {
|
|
dwt enabled
|
|
click_method clickfinger
|
|
natural_scroll enabled
|
|
middle_emulation enabled
|
|
}
|
|
|
|
# bind caps to ctrl
|
|
input "1:1:AT_Translated_Set_2_keyboard" {
|
|
xkb_options ctrl:nocaps
|
|
}
|
|
|
|
# vim: ft=cfg |