fuzzel: replace rofi with fuzzel

This commit is contained in:
Nydragon 2024-08-08 13:27:29 +02:00
parent b0d8866997
commit 15e84c58e0
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
3 changed files with 45 additions and 10 deletions

View file

@ -4,5 +4,6 @@
./thunderbird ./thunderbird
./vscode ./vscode
./lollypop ./lollypop
./fuzzel.nix
]; ];
} }

30
home/graphical/fuzzel.nix Normal file
View file

@ -0,0 +1,30 @@
{ pkgs, ... }:
{
programs.fuzzel = {
enable = true;
settings = {
main = {
icon-theme = "Papirus-Dark";
width = 25;
font = "Hack:weight=bold";
line-height = 30;
fields = "name,generic,comment";
terminal = "${pkgs.foot}/bin/foot -e";
prompt = " ";
layer = "overlay";
};
colors = {
background = "282a36fa";
selection = "3d4474fa";
border = "fffffffa";
};
border = {
radius = 20;
};
dmenu = {
exit-immediately-if-empty = "yes";
};
};
};
}

View file

@ -28,7 +28,6 @@ lib.mkIf osConfig.programs.hyprland.enable {
# keepassxc ignores themeing and doesnt show up in system tray otherwise # keepassxc ignores themeing and doesnt show up in system tray otherwise
# Dirty solution but hey # Dirty solution but hey
"sleep 3 && ${pkgs.keepassxc}/bin/keepassxc" "sleep 3 && ${pkgs.keepassxc}/bin/keepassxc"
#"${pkgs.wl-clipboard}/bin/wl-paste --watch ${pkgs.cliphist}/bin/cliphist store -max-items 10"
(lib.mkIf config.services.hypridle.enable "${pkgs.hypridle}/bin/hypridle") (lib.mkIf config.services.hypridle.enable "${pkgs.hypridle}/bin/hypridle")
]; ];
@ -82,18 +81,24 @@ lib.mkIf osConfig.programs.hyprland.enable {
mkRegexList = list: "^(${(lib.strings.concatStringsSep "|" list)})$"; mkRegexList = list: "^(${(lib.strings.concatStringsSep "|" list)})$";
in in
[ [
"float,initialClass:(${ "float,initialClass:${
mkRegexList [ mkRegexList [
"com.nextcloud.desktopclient.nextcloud" "com.nextcloud.desktopclient.nextcloud"
"soffice" "soffice"
"xdg-desktop-portal-gtk" "xdg-desktop-portal-gtk"
] ]
})" }"
"bordercolor rgb(e50000) rgb(ff8d00) rgb(ffee00) rgb(028121) rgb(004cff) rgb(770088), fullscreen:1" "bordercolor rgb(e50000) rgb(ff8d00) rgb(ffee00) rgb(028121) rgb(004cff) rgb(770088), fullscreen:1"
"workspace 2,initialClass:(${mkRegexList [ "firefox" ]})" "focusonactivate, title:${mkRegexList [ "Firefox" ]}"
"workspace 3,initialClass:(${mkRegexList [ "obsidian" ]})" "workspace 2,initialClass:${mkRegexList [ "firefox" ]}"
"workspace 4,initialClass:(${mkRegexList [ "discord" ]})" "workspace 3,initialClass:${mkRegexList [ "obsidian" ]}"
"workspace 5,initialClass:(${mkRegexList [ "lollypop" ]})" "workspace 4,initialClass:${mkRegexList [ "discord" ]}"
"workspace 5,initialClass:${mkRegexList [ "lollypop" ]}"
# Fixes: Nextcloud Client having a variable size depending on open tiled windows
"size 30% 50%, initialClass:com.nextcloud.desktopclient.nextcloud"
# Fixes: Nextcloud Client closing instantly because the cursor is not on the app
"noinitialfocus, initialClass:com.nextcloud.desktopclient.nextcloud"
]; ];
# https://wiki.hyprland.org/Configuring/Variables/#animations # https://wiki.hyprland.org/Configuring/Variables/#animations
animations = { animations = {
@ -124,17 +129,16 @@ lib.mkIf osConfig.programs.hyprland.enable {
misc = { misc = {
force_default_wallpaper = 0; force_default_wallpaper = 0;
disable_hyprland_logo = false; disable_hyprland_logo = false;
focus_on_activate = false; # Open windows without focusing them focus_on_activate = true; # Open windows without focusing them
}; };
bindm = [ "$mod,mouse:272,movewindow" ]; bindm = [ "$mod,mouse:272,movewindow" ];
bind = bind =
[ [
"$mod, D, exec, rofi -config ${config.home.homeDirectory}/.config/rofi/config.rasi -show combi -automatic-save-to-history" "$mod, D, exec, ${pkgs.fuzzel}/bin/fuzzel"
"$mod, E, exec, ${pkgs.nautilus}/bin/nautilus" "$mod, E, exec, ${pkgs.nautilus}/bin/nautilus"
"$mod, Return, exec, ${pkgs.foot}/bin/foot" "$mod, Return, exec, ${pkgs.foot}/bin/foot"
#"$mod, S, exec, rofi -show clipboard -show-icons"
"$mod SHIFT, Q, killactive," "$mod SHIFT, Q, killactive,"
"$mod, V, togglefloating" "$mod, V, togglefloating"
"$mod SHIFT, P, exec, rofi -show p -modi p:${pkgs.rofi-power-menu}/bin/rofi-power-menu" "$mod SHIFT, P, exec, rofi -show p -modi p:${pkgs.rofi-power-menu}/bin/rofi-power-menu"