i3: Fix cardinals

Even with reducing a lot of the duplicates and risk to typo, I still
make typos...
This commit is contained in:
Geoffrey Frogeye 2024-06-12 17:17:22 +02:00
parent 865bffa641
commit c31f1ba8dd
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8

View file

@ -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;