From 3cc31b379e270ada62e6204def9c5c40d2e87f61 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Mon, 25 Mar 2024 14:53:52 -0400 Subject: [PATCH] hyprland: added catppuccin themes to lightdm --- modules/hyprland.nix | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/modules/hyprland.nix b/modules/hyprland.nix index b299a44b..316b24b7 100644 --- a/modules/hyprland.nix +++ b/modules/hyprland.nix @@ -9,10 +9,25 @@ enable = true; greeters.slick = { enable = true; + theme.name = "Catppuccin-Latte-Compact-Green-Light"; + theme.package = pkgs.catppuccin-gtk.override { + accents = [ "green" ]; + size = "compact"; + variant = "latte"; + tweaks = [ "normal" ]; + }; + iconTheme.name = "Papirus-Dark"; + iconTheme.package = pkgs.catppuccin-papirus-folders.override { + flavor = "latte"; + accent = "green"; + }; + font.name = "NotoSansM Nerd Font Mono"; + + cursorTheme.package = pkgs.vanilla-dmz; + cursorTheme.name = "Vanilla-DMZ-AA"; + cursorTheme.size = 32; + extraConfig = '' - theme-name=breeze-gtk - icon-theme=breeze - font-name="NotoSansM Nerd Font Mono" background=#000000 enable-hidpi=on '';