Fixed mixed up keybinds in gaps mode

This commit is contained in:
Marko Korhonen 2020-04-18 13:41:09 +03:00
parent c9f71b89d2
commit 2bd1b99d74
No known key found for this signature in database
GPG key ID: 911B85FBC6003FE5

View file

@ -23,7 +23,7 @@ mode "$mode_gaps_inner" {
bindsym k gaps inner all plus 1 bindsym k gaps inner all plus 1
bindsym 0 gaps inner all set 0 bindsym 0 gaps inner all set 0
bindsym r gaps inner all set 10 bindsym r gaps inner all set 10
bindsym i mode "$mode_gaps_outer" bindsym o mode "$mode_gaps_outer"
bindsym Escape mode "default" bindsym Escape mode "default"
} }
mode "$mode_gaps_outer" { mode "$mode_gaps_outer" {
@ -31,7 +31,7 @@ mode "$mode_gaps_outer" {
bindsym k gaps outer all plus 1 bindsym k gaps outer all plus 1
bindsym 0 gaps outer all set 0 bindsym 0 gaps outer all set 0
bindsym r gaps outer all set 10 bindsym r gaps outer all set 10
bindsym o mode "$mode_gaps_inner" bindsym i mode "$mode_gaps_inner"
bindsym Escape mode "default" bindsym Escape mode "default"
} }