From 1636aa9d1ff005482997ee55a6fe29e69ab77598 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Sun, 1 Sep 2024 17:30:23 +0200 Subject: [PATCH] chore: remove my config from gtk service module --- home/modules/ruther/home/services/gtk.scm | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/home/modules/ruther/home/services/gtk.scm b/home/modules/ruther/home/services/gtk.scm index 6b0d999..75da1f3 100644 --- a/home/modules/ruther/home/services/gtk.scm +++ b/home/modules/ruther/home/services/gtk.scm @@ -6,7 +6,6 @@ #:use-module (guix build-system trivial) #:use-module (gnu home services) #:use-module (ruther home services dconf) - #:use-module (ruther home themes) #:export (home-gtk-configuration gtk-theme-configuration home-gtk-service-type)) @@ -148,23 +147,3 @@ home-environment-variables-service-type add-xcursor-environment))) (description "Create gtk theme configuration files for gtk2 and gtk3"))) - -(define-public dconf-config - (let ((gtk-theme (make-graphite-gtk-theme #:theme "orange" #:color "dark")) - (icon-theme (make-tela-circle-icon-theme #:variant "orange")) - (cursor-theme (make-catppuccin-cursors #:flavor "frappe" #:accent "sapphire"))) - (home-gtk-configuration - (gtk-theme - (gtk-theme-configuration - (package gtk-theme) - (name (assoc-ref (package-properties gtk-theme) 'theme-name)))) - (cursor-theme - (gtk-theme-configuration - (package cursor-theme) - (name (assoc-ref (package-properties cursor-theme) 'cursor-theme-name)) - (size 16))) - (icon-theme - (gtk-theme-configuration - (package icon-theme) - (name (assoc-ref (package-properties icon-theme) 'dark-icon-theme-name)))) - (font-name "Ubuntu 10")))) -- 2.48.1