From a1ce705fae8c31b9f39014c578265d1b244854a8 Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Sat, 18 Apr 2020 13:41:09 +0300 Subject: [PATCH] Fixed mixed up keybinds in gaps mode --- home/.config/sway/conf.d/06-keybinds.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/.config/sway/conf.d/06-keybinds.conf b/home/.config/sway/conf.d/06-keybinds.conf index df86950..4cb5873 100644 --- a/home/.config/sway/conf.d/06-keybinds.conf +++ b/home/.config/sway/conf.d/06-keybinds.conf @@ -23,7 +23,7 @@ mode "$mode_gaps_inner" { bindsym k gaps inner all plus 1 bindsym 0 gaps inner all set 0 bindsym r gaps inner all set 10 - bindsym i mode "$mode_gaps_outer" + bindsym o mode "$mode_gaps_outer" bindsym Escape mode "default" } mode "$mode_gaps_outer" { @@ -31,7 +31,7 @@ mode "$mode_gaps_outer" { bindsym k gaps outer all plus 1 bindsym 0 gaps outer all set 0 bindsym r gaps outer all set 10 - bindsym o mode "$mode_gaps_inner" + bindsym i mode "$mode_gaps_inner" bindsym Escape mode "default" }