meow
This commit is contained in:
parent
e1bec20b9c
commit
3ca0368824
3 changed files with 14 additions and 0 deletions
10
modules/fuzzel.nix
Normal file
10
modules/fuzzel.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{ pkgs, lib, ... }:
|
||||||
|
{
|
||||||
|
programs.fuzzel.settings = {
|
||||||
|
main = {
|
||||||
|
terminal = lib.getExe pkgs.alacritty;
|
||||||
|
layer = "overlay";
|
||||||
|
};
|
||||||
|
colors.background = "ffffffff";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -13,6 +13,7 @@
|
||||||
./niri
|
./niri
|
||||||
./gammastep.nix
|
./gammastep.nix
|
||||||
./hypridle.nix
|
./hypridle.nix
|
||||||
|
./fuzzel.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# TODO please change the username & home directory to your own
|
# TODO please change the username & home directory to your own
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,7 @@ let
|
||||||
focus-column-right
|
focus-column-right
|
||||||
focus-workspace-up
|
focus-workspace-up
|
||||||
focus-workspace-down
|
focus-workspace-down
|
||||||
|
quit
|
||||||
;
|
;
|
||||||
|
|
||||||
# Helper to call QuickShell
|
# Helper to call QuickShell
|
||||||
|
|
@ -136,6 +137,8 @@ in
|
||||||
"Mod+Right".action = focus-column-right;
|
"Mod+Right".action = focus-column-right;
|
||||||
"Mod+Down".action = focus-workspace-down;
|
"Mod+Down".action = focus-workspace-down;
|
||||||
"Mod+Up".action = focus-workspace-up;
|
"Mod+Up".action = focus-workspace-up;
|
||||||
|
|
||||||
|
"Mod+Shift+E".action = quit;
|
||||||
}
|
}
|
||||||
|
|
||||||
# --- Dynamic Workspace Binds ---
|
# --- Dynamic Workspace Binds ---
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue