diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-10-12 22:32:26 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-10-12 22:32:26 -0700 |
commit | 425cfc8783dcf546a19f6f84eec53b5f1672dec8 (patch) | |
tree | da3d3336adff337fb41ceef9e71c8c7f6a8a022e /home | |
parent | f17f59be80d1c50a9aaeaceba97939999e10d778 (diff) | |
download | nix-425cfc8783dcf546a19f6f84eec53b5f1672dec8.tar nix-425cfc8783dcf546a19f6f84eec53b5f1672dec8.tar.gz nix-425cfc8783dcf546a19f6f84eec53b5f1672dec8.tar.bz2 nix-425cfc8783dcf546a19f6f84eec53b5f1672dec8.tar.lz nix-425cfc8783dcf546a19f6f84eec53b5f1672dec8.tar.xz nix-425cfc8783dcf546a19f6f84eec53b5f1672dec8.tar.zst nix-425cfc8783dcf546a19f6f84eec53b5f1672dec8.zip |
Maybe really fix some GTK theme issues for real
Diffstat (limited to 'home')
-rw-r--r-- | home/nipsy/common/optional/desktops/gtk.nix | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/home/nipsy/common/optional/desktops/gtk.nix b/home/nipsy/common/optional/desktops/gtk.nix index 8369deb..bac2060 100644 --- a/home/nipsy/common/optional/desktops/gtk.nix +++ b/home/nipsy/common/optional/desktops/gtk.nix @@ -1,9 +1,11 @@ { + home.sessionVariables = { + GTK_THEME = "Adwaita:dark"; + }; + gtk = { enable = true; - gtk3.extraConfig.gtk-application-prefer-dark-theme = 1; - gtk3.extraConfig.gtk-theme-name = "Adwaita"; - gtk4.extraConfig.gtk-application-prefer-dark-theme = 1; - gtk4.extraConfig.gtk-theme-name = "Adwaita"; + gtk3.extraConfig.gtk-application-prefer-dark-theme = true; + gtk4.extraConfig.gtk-application-prefer-dark-theme = true; }; } |