diff options
author | Karel Kočí <cynerd@email.cz> | 2022-01-20 15:40:35 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-01-20 15:40:35 +0100 |
commit | aa974af1819b418500a8b94a531086b170972eac (patch) | |
tree | 00e3d83e5a8a8d16c36d9086ee59e316d673a57d /config/sway/bindsym-system | |
parent | 8fae57dbeab4e49ca2ef8e0806ef9a25789d5157 (diff) | |
download | myconfigs-aa974af1819b418500a8b94a531086b170972eac.tar.gz myconfigs-aa974af1819b418500a8b94a531086b170972eac.tar.bz2 myconfigs-aa974af1819b418500a8b94a531086b170972eac.zip |
sway: split config file
Diffstat (limited to 'config/sway/bindsym-system')
-rw-r--r-- | config/sway/bindsym-system | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/config/sway/bindsym-system b/config/sway/bindsym-system new file mode 100644 index 0000000..1c8eea4 --- /dev/null +++ b/config/sway/bindsym-system @@ -0,0 +1,13 @@ +# vim: ft=swayconfig +set $mode_system System (l) lock, (e) logout, (s) suspend, (r) reboot, (Shift+s) shutdown +mode "$mode_system" { + bindsym l exec --no-startup-id loginctl lock-session $XDG_SESSION_ID, mode "default" + bindsym e exec --no-startup-id swaymsg exit, mode "default" + bindsym s exec --no-startup-id loginctl suspend, mode "default" + bindsym r exec --no-startup-id loginctl reboot, mode "default" + bindsym Shift+s exec --no-startup-id loginctl poweroff, mode "default" + + bindsym Return mode "default" + bindsym Escape mode "default" +} +bindsym $mod+Shift+q mode "$mode_system" |