-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(home-manager/gtk): add gnome option
Add an option to set the gtk theme as gnome shell's theme using the user-theme gnome extension
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,11 @@ in | |
default = [ "normal" ]; | ||
description = "Catppuccin tweaks for gtk"; | ||
}; | ||
gnome = mkOption { | ||
type = lib.types.bool; | ||
default = false; | ||
description = "Wether to use the gtk theme as gnome shell's theme"; | ||
}; | ||
|
||
cursor = ctp.mkCatppuccinOpt "gtk cursors" | ||
// { | ||
|
@@ -79,5 +84,25 @@ in | |
"gtk-4.0/gtk.css".source = "${gtk4Dir}/gtk.css"; | ||
"gtk-4.0/gtk-dark.css".source = "${gtk4Dir}/gtk-dark.css"; | ||
}; | ||
|
||
home.packages = lib.mkIf cfg.gnome [pkgs.gnomeExtensions.user-themes]; | ||
|
||
dconf.settings = lib.mkIf cfg.gnome { | ||
"org/gnome/shell" = { | ||
disable-user-extensions = false; | ||
enabled-extensions = [ | ||
"[email protected]" | ||
]; | ||
}; | ||
"org/gnome/shell/extensions/user-theme" = { | ||
name = config.gtk.theme.name; | ||
}; | ||
"org/gnome/desktop/interface" = { | ||
color-scheme = | ||
if cfg.flavour == "latte" | ||
then "default" | ||
else "prefer-dark"; | ||
}; | ||
}; | ||
}; | ||
} |