GTK GTK GTK
This commit is contained in:
+1
-1
@@ -611,7 +611,7 @@ This sets audiosystem for this machine
|
|||||||
** =generated/out_of_tree/core/theme.nix=
|
** =generated/out_of_tree/core/theme.nix=
|
||||||
I use the [[https://catppuccin.com/][Catppuccin]] almost everywhere. The nix module integrates almost automatically everywhere (except gtk).
|
I use the [[https://catppuccin.com/][Catppuccin]] almost everywhere. The nix module integrates almost automatically everywhere (except gtk).
|
||||||
You'll notice the color values in multiple places outside this as well.
|
You'll notice the color values in multiple places outside this as well.
|
||||||
#+BEGIN_SRC nix :tangle generated/system/core/theme.nix :noweb tangle :mkdirp yes :eval never-html
|
#+BEGIN_SRC nix :tangle generated/out_of_tree/core/theme.nix :noweb tangle :mkdirp yes :eval never-html
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -0,0 +1,28 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
gtk = {
|
||||||
|
enable = true;
|
||||||
|
colorScheme = "dark";
|
||||||
|
theme = {
|
||||||
|
name = "Catppuccin-GTK-Grey-Dark-Compact";
|
||||||
|
package = (pkgs.magnetic-catppuccin-gtk.override {
|
||||||
|
accent = [ "grey" ];
|
||||||
|
shade = "dark";
|
||||||
|
tweaks = [ "black" ];
|
||||||
|
size = "compact";
|
||||||
|
});
|
||||||
|
};
|
||||||
|
iconTheme.name = "Papirus-Dark";
|
||||||
|
};
|
||||||
|
|
||||||
|
catppuccin = {
|
||||||
|
enable = true;
|
||||||
|
flavor = "mocha";
|
||||||
|
accent = "blue";
|
||||||
|
gtk = {
|
||||||
|
icon.enable = true;
|
||||||
|
};
|
||||||
|
cursors.enable = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -26,32 +26,3 @@
|
|||||||
cursors.enable = true;
|
cursors.enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
{ pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
gtk = {
|
|
||||||
enable = true;
|
|
||||||
colorScheme = "dark";
|
|
||||||
theme = {
|
|
||||||
name = "Catppuccin-GTK-Grey-Dark-Compact";
|
|
||||||
package = (pkgs.magnetic-catppuccin-gtk.override {
|
|
||||||
accent = [ "grey" ];
|
|
||||||
shade = "dark";
|
|
||||||
tweaks = [ "black" ];
|
|
||||||
size = "compact";
|
|
||||||
});
|
|
||||||
};
|
|
||||||
iconTheme.name = "Papirus-Dark";
|
|
||||||
};
|
|
||||||
|
|
||||||
catppuccin = {
|
|
||||||
enable = true;
|
|
||||||
flavor = "mocha";
|
|
||||||
accent = "blue";
|
|
||||||
gtk = {
|
|
||||||
icon.enable = true;
|
|
||||||
};
|
|
||||||
cursors.enable = true;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|||||||
Reference in New Issue
Block a user