diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-02-06 12:51:16 +0100 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-02-06 12:51:16 +0100 |
| commit | 91b2031b7f863450768eb43ae9bc690f8168e7c7 (patch) | |
| tree | ba263e50fbd5b3154d1cf51f0fb02f23bc60ffe5 /modules/home/i3wm/nord-blue/i3.nix | |
| parent | e5af2022618a23c507c713a9906539e282255934 (diff) | |
fixed the lock screen wrapper script to be in line with the other wrappers/scripts
Diffstat (limited to 'modules/home/i3wm/nord-blue/i3.nix')
| -rw-r--r-- | modules/home/i3wm/nord-blue/i3.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/home/i3wm/nord-blue/i3.nix b/modules/home/i3wm/nord-blue/i3.nix index 15081df..02dce9a 100644 --- a/modules/home/i3wm/nord-blue/i3.nix +++ b/modules/home/i3wm/nord-blue/i3.nix @@ -2,7 +2,7 @@ let vars = import ./variables.nix; - scripts = import ./scripts.nix {inherit pkgs; }; + lock-screen = import ./i3lock.nix {inherit pkgs; }; dmenu = import ./dmenu.nix {inherit pkgs; }; mod = "Mod4"; in @@ -52,7 +52,7 @@ in "${mod}+Return" = "exec ${pkgs.alacritty}/bin/alacritty"; # Lanuch alacritty as a terminal "${mod}+d" = "exec ${dmenu}"; # Launch dmenu (app launcher) "${mod}+q" = "kill"; # Close an app (kill the process) - "${mod}+Ctrl+l" = "exec lock-screen"; # Lock screen + "${mod}+Ctrl+l" = "exec ${lock-screen}"; # Lock screen "${mod}+Shift+r" = "restart"; # Reload i3 "${mod}+Ctrl+Shift+e" = "exec sh -c 'i3-msg exit'"; # Exit i3 (CAREFUL NO CONFIRM) "${mod}+Shift+s" = "exec flameshot gui"; |
