From 69bf5f7f54c9164368a88e6b646b5fb7a15e855d Mon Sep 17 00:00:00 2001 From: zackartz Date: Fri, 21 Jun 2024 15:11:49 -0400 Subject: [PATCH] 764 current 2024-06-21 15:11:46 24.11.20240621.1c0bec2 6.9.5-zen1 * --- modules/home/rice/gtk/default.nix | 38 ++++--------------------------- 1 file changed, 5 insertions(+), 33 deletions(-) diff --git a/modules/home/rice/gtk/default.nix b/modules/home/rice/gtk/default.nix index 0ca52f1..3635514 100644 --- a/modules/home/rice/gtk/default.nix +++ b/modules/home/rice/gtk/default.nix @@ -10,18 +10,21 @@ with lib.custom; let cfg = config.rice.gtk; in { options.rice.gtk = with types; { - enable = mkBoolOpt false "Enable Zsh Configuration"; + enable = mkBoolOpt false "Enable GTK Customization"; }; config = mkIf cfg.enable { gtk = { enable = true; - catppuccin.enable = true; # iconTheme = { # package = pkgs.catppuccin-papirus-folders; # name = "Papirus"; # }; + theme = { + name = "Tokyo-Night-B-GS"; + package = pkgs.tokyonight-gtk-theme; + }; font = { name = "Iosevka"; size = 11; @@ -59,37 +62,6 @@ in { }; size = 24; }; - - sessionVariables = { - }; - }; - qt = { - enable = true; - platformTheme = "qtct"; - style = { - name = "Catppuccin-Mocha-Sapphire"; - package = pkgs.catppuccin-kde.override { - flavour = ["mocha"]; - accents = ["sapphire"]; - }; - }; - }; - xdg.configFile = { - "Kvantum/catppuccin/catppuccin.kvconfig".source = builtins.fetchurl { - url = "https://raw.githubusercontent.com/catppuccin/Kvantum/main/src/Catppuccin-Mocha-Sapphire/Catppuccin-Mocha-Sapphire.kvconfig"; - sha256 = "sha256:0n9f5hysr4k1sf9fd3sgd9fvqwrxrpcvj6vajqmb5c5ji8nv2w3c"; - }; - "Kvantum/catppuccin/catppuccin.svg".source = builtins.fetchurl { - url = "https://raw.githubusercontent.com/catppuccin/Kvantum/main/src/Catppuccin-Mocha-Sapphire/Catppuccin-Mocha-Sapphire.svg"; - sha256 = "sha256:1hq9h34178h0d288hgwb0ngqnixz24m9lk0ahc4dahwqn77fndwf"; - }; - "Kvantum/kvantum.kvconfig".text = '' - [General] - theme=catppuccin - - [Applications] - catppuccin=qt5ct, org.qbittorrent.qBittorrent, hyprland-share-picker - ''; }; }; }