From 5c8e0414f06b2975878d054a9f515bae9eecdffc Mon Sep 17 00:00:00 2001 From: Sergey Yakovlev Date: Mon, 29 Apr 2024 12:05:15 +0300 Subject: [PATCH] chore: temporary catppuccin theme for gkt set manually https://github.com/catppuccin/nix/pull/147 --- nixos/roles/user/desktop/common/gtk.nix | 30 +++++++++++++------------ 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/nixos/roles/user/desktop/common/gtk.nix b/nixos/roles/user/desktop/common/gtk.nix index d6ef874..b9f962d 100644 --- a/nixos/roles/user/desktop/common/gtk.nix +++ b/nixos/roles/user/desktop/common/gtk.nix @@ -8,7 +8,7 @@ gtk = { enable = true; - catppuccin.enable = true; + # catppuccin.enable = true; gtk3.extraConfig.gtk-application-prefer-dark-theme = false; gtk3.bookmarks = [ "file:///home/syakovlev/Documents" @@ -25,28 +25,30 @@ package = pkgs.tela-icon-theme; name = "Tela"; }; - # theme = { - # name = "Catppuccin-Latte"; - # package = pkgs.catppuccin-gtk.override { - # accents = ["green"]; - # variant = "latte"; - # }; - # }; - # cursorTheme = { - # package = pkgs.capitaine-cursors; - # name = "capitaine-cursors"; - # size = 16; - # }; + theme = { + name = "Catppuccin-Latte-Standard-Lavender-light"; + package = pkgs.catppuccin-gtk.override { + accents = ["lavender"]; + size = "standard"; + variant = "latte"; + }; + }; + cursorTheme = { + name = "Catppuccin-Latte-Lavender-Cursors"; + package = pkgs.catppuccin-cursors.latteLavender; + size = 16; + }; }; dconf.settings."org/gnome/desktop/interface" = { + name = "Catppuccin-Latte-Standard-Lavender-light"; color-scheme = "prefer-light"; }; dconf.settings = { # For Gnome shell "org/gnome/shell/extensions/user-theme" = { - name = "Catppuccin-Latte-Standard-Lavender-Light"; + name = "Catppuccin-Latte-Standard-Lavender-light"; }; }; }