Switch GTK theme to Adwaita, Arc is unmaintained
Set Qt theme to adwaita-qt for consistent theme
This commit is contained in:
parent
01cdbfea12
commit
1b14e48889
|
@ -72,11 +72,21 @@
|
||||||
size = 32;
|
size = 32;
|
||||||
};
|
};
|
||||||
theme = {
|
theme = {
|
||||||
package = pkgs.arc-theme;
|
package = pkgs.gnome.gnome-themes-extra;
|
||||||
name =
|
name =
|
||||||
if config.scheme.variant == "light"
|
if config.scheme.variant == "light"
|
||||||
then "Arc-Lighter"
|
then "Adwaita"
|
||||||
else "Arc-Dark";
|
else "Adwaita-dark";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
qt = {
|
||||||
|
enable = true;
|
||||||
|
style = {
|
||||||
|
package = pkgs.adwaita-qt;
|
||||||
|
name =
|
||||||
|
if config.scheme.variant == "light"
|
||||||
|
then "adwaita"
|
||||||
|
else "adwaita-dark";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
xdg = {
|
xdg = {
|
||||||
|
|
Reference in a new issue