feat(gui): theme sway with catppuccin
This commit is contained in:
parent
a4096481a0
commit
ccc3ff74bd
4 changed files with 273 additions and 1 deletions
|
@ -8,6 +8,12 @@ in {
|
|||
options.home.catppuccin = {
|
||||
enable = mkEnableOption "catppuccin colour scheme" // { default = gui; };
|
||||
|
||||
sway = mkOption {
|
||||
type = with types; str;
|
||||
default = "frappe";
|
||||
description = "colour palette used in sway";
|
||||
};
|
||||
|
||||
gtk = {
|
||||
package = mkOption {
|
||||
type = with types; package;
|
||||
|
@ -54,9 +60,10 @@ in {
|
|||
# override greetd theme
|
||||
programs.regreet = mkIf cfg.enable {
|
||||
settings = {
|
||||
background.path = ./solid.png;
|
||||
GTK = {
|
||||
cursor_theme_name = cfg.cursor.name;
|
||||
theme_name = cfg.gtk.name;
|
||||
cursor_theme_name = cfg.cursor.name;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue