From c31f1ba8dd64f8a18817632e44c94879d09486c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Geoffrey=20=E2=80=9CFrogeye=E2=80=9D=20Preud=27homme?= Date: Wed, 12 Jun 2024 17:17:22 +0200 Subject: [PATCH] i3: Fix cardinals Even with reducing a lot of the duplicates and risk to typo, I still make typos... --- hm/desktop/i3.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hm/desktop/i3.nix b/hm/desktop/i3.nix index 3b3f0d2..6bc4a73 100644 --- a/hm/desktop/i3.nix +++ b/hm/desktop/i3.nix @@ -14,8 +14,8 @@ let cardinals = [ { vi = "h"; arrow = "Left"; container = "left"; workspace = "prev_on_output"; output = "left"; } { vi = "l"; arrow = "Right"; container = "right"; workspace = "next_on_output"; output = "right"; } - { vi = "j"; arrow = "Down"; container = "up"; workspace = "prev"; output = "below"; } - { vi = "k"; arrow = "Up"; container = "down"; workspace = "next"; output = "above"; } + { vi = "j"; arrow = "Down"; container = "down"; workspace = "prev"; output = "below"; } + { vi = "k"; arrow = "Up"; container = "up"; workspace = "next"; output = "above"; } ]; forEachCardinal = f: map (c: f c) cardinals;