@@ 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"))))