From 485e07ec9ec6546b3649d5c170adc634d5048377 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Mon, 23 Nov 2020 11:58:55 +0100 Subject: [PATCH] feat(i3): move windows around quicker --- configs/i3.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configs/i3.nix b/configs/i3.nix index f91f1fa..3b274d1 100644 --- a/configs/i3.nix +++ b/configs/i3.nix @@ -164,10 +164,10 @@ in { "l" = "resize grow width 10 px or 5 ppt"; }; keybindings = { - "${modifier}+Shift+h" = "move left"; - "${modifier}+Shift+j" = "move down"; - "${modifier}+Shift+k" = "move up"; - "${modifier}+Shift+l" = "move right"; + "${modifier}+Shift+h" = "move left 25 px"; + "${modifier}+Shift+j" = "move down 25 px"; + "${modifier}+Shift+k" = "move up 25 px"; + "${modifier}+Shift+l" = "move right 25 px"; "${modifier}+h" = "focus left"; "${modifier}+j" = "focus down"; "${modifier}+k" = "focus up";