feat: move to tokyo tokyo night

this isn't fully complete but it will be soon

still have river
This commit is contained in:
Artur Manuel 2024-11-28 16:23:15 +00:00
commit df2064b116
9 changed files with 86 additions and 192 deletions

View file

@ -10,9 +10,9 @@
"org/gnome/desktop/interface" = {
color-scheme = "prefer-dark";
cursor-size = lib.gvariant.mkUint32 24;
cursor-theme = "BreezeX-RosePine-Linux";
icon-theme = "rose-pine";
gtk-theme = "rose-pine";
cursor-theme = "Simp1e-Tokyo-Night";
icon-theme = "Tela-circle-purple-dark";
gtk-theme = "Tokyonight-dark";
};
};
}
@ -26,17 +26,16 @@
};
environment.systemPackages = builtins.attrValues {
inherit
(pkgs)
rose-pine-gtk-theme
rose-pine-cursor
rose-pine-icon-theme
libadwaita # workaround for PyGObject to give apps libadwaita
;
gtk-theme = pkgs.tokyonight-gtk-theme;
icon-theme = pkgs.tela-circle-icon-theme.override {
colorVariants = ["purple"];
circularFolder = true;
};
cursor-theme = pkgs.simp1e-cursors;
};
systemd.user.tmpfiles.rules = [
"L+ %h/.config/gtk-4.0/gtk.css - - - - ${pkgs.rose-pine-gtk-theme}/share/themes/rose-pine/gtk-4.0/gtk.css"
"L+ %h/.config/gtk-4.0/gtk-dark.css - - - - ${pkgs.rose-pine-gtk-theme}/share/themes/rose-pine/gtk-4.0/gtk.css"
"L+ %h/.config/gtk-4.0/gtk.css - - - - ${pkgs.tokyonight-gtk-theme}/share/themes/Tokyonight-Dark/gtk-4.0/gtk.css"
"L+ %h/.config/gtk-4.0/gtk-dark.css - - - - ${pkgs.tokyonight-gtk-theme}/share/themes/Tokyonight-Dark/gtk-4.0/gtk-dark.css"
];
}