ui: fuzzel to walker

This commit is contained in:
2026-06-05 20:14:00 +03:00
parent 03fbc1e1b7
commit e2527a20d1
4 changed files with 15 additions and 26 deletions
+1 -1
View File
@@ -1,7 +1,6 @@
{ config, lib, ... }: { { config, lib, ... }: {
imports = [ imports = [
./user/btop.nix ./user/btop.nix
./user/fuzzel.nix
./user/ghostty.nix ./user/ghostty.nix
./user/helix.nix ./user/helix.nix
./user/hyprland.nix ./user/hyprland.nix
@@ -12,6 +11,7 @@
./user/quickshell.nix ./user/quickshell.nix
./user/sops.nix ./user/sops.nix
./user/ssh.nix ./user/ssh.nix
./user/walker.nix
./user/wob.nix ./user/wob.nix
./user/yazi.nix ./user/yazi.nix
./user/zsh.nix ./user/zsh.nix
-24
View File
@@ -1,24 +0,0 @@
{
programs.fuzzel = {
enable = true;
settings = {
main = {
width = 40;
line-height = 25;
fields = "name,generic,comment,categories,filename,keywords";
prompt = ''" "'';
show-actions = "no";
filter-desktop = "yes";
match-counter = "yes";
};
border = {
radius = "20";
};
dmenu = {
exit-immediately-if-empty = "yes";
};
};
};
}
-1
View File
@@ -136,7 +136,6 @@ in {
"$mainMod, M, exit," "$mainMod, M, exit,"
"$mainMod, E, exec, ghostty -e sh -c yazi" "$mainMod, E, exec, ghostty -e sh -c yazi"
"$mainMod, F, togglefloating," "$mainMod, F, togglefloating,"
"$mainMod, D, exec, fuzzel"
"$mainMod, P, pseudo, # dwindle" "$mainMod, P, pseudo, # dwindle"
"$mainMod, J, layoutmsg, togglesplit" "$mainMod, J, layoutmsg, togglesplit"
"$mainMod, K, layoutmsg, swapsplit" "$mainMod, K, layoutmsg, swapsplit"
+14
View File
@@ -0,0 +1,14 @@
{
services = {
walker = {
enable = true;
systemd.enable = true;
};
elephant.enable = true;
};
wayland.windowManager.hyprland.settings.bind = [
"$mainMod, D, exec, walker"
];
}