diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-02-06 13:25:09 +0100 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-02-06 13:25:09 +0100 |
| commit | 8e7f3f16da6cf4ed87685d93f408316c5b2b189a (patch) | |
| tree | 9e7f033437480e50467e25599c16c9ef5e2ba2ce /modules/home/i3wm/nord-blue | |
| parent | bdf0d226939d8c4e81d2a54fab6cb123a54d281c (diff) | |
fixed running scripts in i3
Diffstat (limited to 'modules/home/i3wm/nord-blue')
| -rw-r--r-- | modules/home/i3wm/nord-blue/i3.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/home/i3wm/nord-blue/i3.nix b/modules/home/i3wm/nord-blue/i3.nix index c6704a2..91ad842 100644 --- a/modules/home/i3wm/nord-blue/i3.nix +++ b/modules/home/i3wm/nord-blue/i3.nix @@ -50,9 +50,9 @@ in keybindings = lib.mkOptionDefault { "${mod}+Return" = "exec ${pkgs.alacritty}/bin/alacritty"; # Lanuch alacritty as a terminal - "${mod}+d" = "exec ${app-launcher}"; # Launch dmenu (app launcher) + "${mod}+d" = "exec app-launcher"; # 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"; @@ -112,7 +112,9 @@ in }; home.packages = with pkgs; [ dmenu # App launcher + app-launcher i3lock # Lock screen + lock-screen imagemagick # Handle wallpaper resizing for i3-lock polybar # Status bar alacritty # Terminal Emulator |
