diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-02-06 14:53:01 +0100 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-02-06 14:53:01 +0100 |
| commit | f7abb234123ce5f11c54d8f23a5445680d1d3ab5 (patch) | |
| tree | 40aac5304e90f3c569f4e2eb6a6f0fb2a985ebfb | |
| parent | ab72a3d467ed0857fd9d2771b59a953d38d15200 (diff) | |
added keybind to launch firefox
| -rw-r--r-- | modules/home/i3wm/nord-blue/i3.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/home/i3wm/nord-blue/i3.nix b/modules/home/i3wm/nord-blue/i3.nix index 91ad842..97df8ee 100644 --- a/modules/home/i3wm/nord-blue/i3.nix +++ b/modules/home/i3wm/nord-blue/i3.nix @@ -51,6 +51,8 @@ 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}+m" = "exec app-launcher"; # Alternative keybind to launch the app launcher + "${mod}+n" = "exec firefox"; # Launch firefox "${mod}+q" = "kill"; # Close an app (kill the process) "${mod}+Ctrl+l" = "exec lock-screen"; # Lock screen "${mod}+Shift+r" = "restart"; # Reload i3 |
