From 163588b61ba6307b92832cface5e79e53b152497 Mon Sep 17 00:00:00 2001 From: gnidorah Date: Sun, 9 Sep 2018 15:02:11 +0300 Subject: [PATCH] i3 module: add missing pieces to default config (cherry picked from commit 055d100548fb941e60142e99916d47933d4558bc) --- modules/services/window-managers/i3.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/services/window-managers/i3.nix b/modules/services/window-managers/i3.nix index 3e4452351..2af12e57e 100644 --- a/modules/services/window-managers/i3.nix +++ b/modules/services/window-managers/i3.nix @@ -408,6 +408,11 @@ let "${cfg.config.modifier}+Up" = "focus up"; "${cfg.config.modifier}+Right" = "focus right"; + "${cfg.config.modifier}+Shift+Left" = "move left"; + "${cfg.config.modifier}+Shift+Down" = "move down"; + "${cfg.config.modifier}+Shift+Up" = "move up"; + "${cfg.config.modifier}+Shift+Right" = "move right"; + "${cfg.config.modifier}+h" = "split h"; "${cfg.config.modifier}+v" = "split v"; "${cfg.config.modifier}+f" = "fullscreen toggle"; @@ -417,6 +422,7 @@ let "${cfg.config.modifier}+e" = "layout toggle split"; "${cfg.config.modifier}+Shift+space" = "floating toggle"; + "${cfg.config.modifier}+space" = "focus mode_toggle"; "${cfg.config.modifier}+1" = "workspace 1"; "${cfg.config.modifier}+2" = "workspace 2";