home/sway: refactor inputs
This commit is contained in:
parent
6f45bc254b
commit
0e45e8e390
1 changed files with 14 additions and 7 deletions
|
@ -54,14 +54,21 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
### Inputs
|
### Inputs
|
||||||
input."*" = {
|
input = {
|
||||||
accel_profile = "flat";
|
"*" = {
|
||||||
natural_scroll = "enabled";
|
accel_profile = "flat";
|
||||||
|
natural_scroll = "enabled";
|
||||||
|
};
|
||||||
|
|
||||||
# touchpad
|
"type:touchpad" = {
|
||||||
tap = "enabled";
|
tap = "enabled";
|
||||||
drag = "enabled";
|
drag = "enabled";
|
||||||
dwt = "disabled";
|
dwt = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
"type:keyboard" = {
|
||||||
|
xkb_options = "caps:escape";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
### Keybinds
|
### Keybinds
|
||||||
|
|
Loading…
Reference in a new issue