sway: move workspace between outputs
This commit is contained in:
parent
9bd74a82a8
commit
b185275a0f
1 changed files with 9 additions and 0 deletions
|
@ -19,12 +19,20 @@
|
||||||
natural_scroll = "enable";
|
natural_scroll = "enable";
|
||||||
dwt = "disabled"; # don't disable-while-typing
|
dwt = "disabled"; # don't disable-while-typing
|
||||||
};
|
};
|
||||||
|
"type:pointer" = {
|
||||||
|
# pointer_accel = "0.8"; # pointer SPEED, not acceleration
|
||||||
|
# accel_profile = "flat";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
modifier = "Mod4"; # super
|
modifier = "Mod4"; # super
|
||||||
keybindings = lib.mkOptionDefault {
|
keybindings = lib.mkOptionDefault {
|
||||||
"Mod4+x" = "focus child";
|
"Mod4+x" = "focus child";
|
||||||
"Mod4+Escape" = "exec loginctl lock-session";
|
"Mod4+Escape" = "exec loginctl lock-session";
|
||||||
|
|
||||||
|
# Move workspace between outputs
|
||||||
|
"Mod4+Control+Shift+h" = "move workspace to output left";
|
||||||
|
"Mod4+Control+Shift+l" = "move workspace to output right";
|
||||||
|
|
||||||
# Brightness
|
# Brightness
|
||||||
"XF86MonBrightnessUp" = "exec light -A 5";
|
"XF86MonBrightnessUp" = "exec light -A 5";
|
||||||
"XF86MonBrightnessDown" = "exec light -U 5";
|
"XF86MonBrightnessDown" = "exec light -U 5";
|
||||||
|
@ -105,6 +113,7 @@
|
||||||
pavucontrol # PulseAudio Volume Control
|
pavucontrol # PulseAudio Volume Control
|
||||||
pulseaudio # pactl
|
pulseaudio # pactl
|
||||||
swaylock
|
swaylock
|
||||||
|
wdisplays
|
||||||
wl-clipboard
|
wl-clipboard
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue