diff options
| author | Robert Günzler <r@gnzler.io> | 2022-02-09 00:09:38 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2022-02-09 00:09:38 +0100 |
| commit | c57488ba0598bc42a7fd7a90954e2a15dfedd53c (patch) | |
| tree | 0a721911bab856d4637bc7cd40c1b519a0fda729 /.config/sway | |
| parent | 341a820c1148b101fc6fdfa07e05142983af752d (diff) | |
sway: use no-repeat on keybinds
Diffstat (limited to '.config/sway')
| -rw-r--r-- | .config/sway/binds.conf | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/.config/sway/binds.conf b/.config/sway/binds.conf index 910b7fa..700a727 100644 --- a/.config/sway/binds.conf +++ b/.config/sway/binds.conf @@ -1,11 +1,17 @@ # vim: ft=i3config # Basics {{{ -bindsym $mod+Return exec $term -bindsym $mod+Shift+Return exec $floating_term -# bindsym $mod+b exec pkill -USR1 waybar -# bindsym $mod+w exec $firefox -bindsym $mod+w exec firefox --private-window +bindsym --no-repeat { + $mod+Return exec $term + $mod+Shift+Return exec $floating_term + $mod+b exec pkill -USR1 waybar + + # bindsym $mod+w exec $firefox + $mod+w exec firefox --private-window + + # start launcher + $mod+d exec menu -run +} # kill focused window bindsym $mod+Shift+q kill @@ -36,7 +42,7 @@ bindsym $mod+Shift+r output - transform 90 anticlockwise # }}} -bindsym Print exec grimshot copy output +bindsym --no-repeat Print exec grimshot copy output bindsym $mod+Shift+s mode "screengrab" # {{{ mode "screengrab" { |