diff --git a/home/graphical/default.nix b/home/graphical/default.nix index 66f3211..6b2531f 100644 --- a/home/graphical/default.nix +++ b/home/graphical/default.nix @@ -4,5 +4,6 @@ ./thunderbird ./vscode ./lollypop + ./fuzzel.nix ]; } diff --git a/home/graphical/fuzzel.nix b/home/graphical/fuzzel.nix new file mode 100644 index 0000000..2e9f287 --- /dev/null +++ b/home/graphical/fuzzel.nix @@ -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"; + }; + }; + }; + +} diff --git a/home/hyprland/default.nix b/home/hyprland/default.nix index ae51792..bd66365 100644 --- a/home/hyprland/default.nix +++ b/home/hyprland/default.nix @@ -28,7 +28,6 @@ lib.mkIf osConfig.programs.hyprland.enable { # keepassxc ignores themeing and doesnt show up in system tray otherwise # Dirty solution but hey "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") ]; @@ -82,18 +81,24 @@ lib.mkIf osConfig.programs.hyprland.enable { mkRegexList = list: "^(${(lib.strings.concatStringsSep "|" list)})$"; in [ - "float,initialClass:(${ + "float,initialClass:${ mkRegexList [ "com.nextcloud.desktopclient.nextcloud" "soffice" "xdg-desktop-portal-gtk" ] - })" + }" "bordercolor rgb(e50000) rgb(ff8d00) rgb(ffee00) rgb(028121) rgb(004cff) rgb(770088), fullscreen:1" - "workspace 2,initialClass:(${mkRegexList [ "firefox" ]})" - "workspace 3,initialClass:(${mkRegexList [ "obsidian" ]})" - "workspace 4,initialClass:(${mkRegexList [ "discord" ]})" - "workspace 5,initialClass:(${mkRegexList [ "lollypop" ]})" + "focusonactivate, title:${mkRegexList [ "Firefox" ]}" + "workspace 2,initialClass:${mkRegexList [ "firefox" ]}" + "workspace 3,initialClass:${mkRegexList [ "obsidian" ]}" + "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 animations = { @@ -124,17 +129,16 @@ lib.mkIf osConfig.programs.hyprland.enable { misc = { force_default_wallpaper = 0; 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" ]; 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, Return, exec, ${pkgs.foot}/bin/foot" - #"$mod, S, exec, rofi -show clipboard -show-icons" "$mod SHIFT, Q, killactive," "$mod, V, togglefloating" "$mod SHIFT, P, exec, rofi -show p -modi p:${pkgs.rofi-power-menu}/bin/rofi-power-menu"