diff --git a/home-manager/common/desktops/hyprland/components/default.nix b/home-manager/common/desktops/hyprland/components/default.nix index c5a0f5d5..a2cc0a04 100644 --- a/home-manager/common/desktops/hyprland/components/default.nix +++ b/home-manager/common/desktops/hyprland/components/default.nix @@ -6,6 +6,6 @@ ./swayosd.nix ./waybar.nix ./wlogout.nix + ./rofi.nix ]; - programs.fuzzel.enable = true; -} \ No newline at end of file +} diff --git a/home-manager/common/desktops/hyprland/components/hyprland.nix b/home-manager/common/desktops/hyprland/components/hyprland.nix index a3030fb6..a7112c7e 100644 --- a/home-manager/common/desktops/hyprland/components/hyprland.nix +++ b/home-manager/common/desktops/hyprland/components/hyprland.nix @@ -1,4 +1,4 @@ -{ inputs, pkgs, ... }: { +{ ... }: { wayland.windowManager.hyprland = { enable = true; plugins = []; @@ -22,7 +22,6 @@ layerrule = [ "blur, waybar" "blur, mako" - "blur, fuzzel" "blur, rofi" ]; xwayland.force_zero_scaling = true; @@ -147,8 +146,8 @@ ############################################################################# # Custom keybinds # Show Rofi on SUPER-SPACE - ''SUPER, space, exec, fuzzel'' - # ''SUPER, space, exec, rofi -show drun -show-icons + # ''SUPER, space, exec, fuzzel'' + ''SUPER, space, exec, rofi -show drun -show-icons'' # Take a screenshot with the Print key'' '', Print, exec, grim -g "$(slurp)" | wl-copy -t image/png'' diff --git a/home-manager/common/desktops/hyprland/components/rofi.nix b/home-manager/common/desktops/hyprland/components/rofi.nix index 698a3354..feef7381 100644 --- a/home-manager/common/desktops/hyprland/components/rofi.nix +++ b/home-manager/common/desktops/hyprland/components/rofi.nix @@ -1,5 +1,6 @@ { ...}: { programs.rofi = { - enable = true; + enable = true; + theme = "material"; }; -} \ No newline at end of file +}