Has anyone managed to make any sort of theming or the LEDs work in pwvucontrol?
At some point, my GTK dark theme settings were having the desired effect, but that broke at some point along the way. I’m not sure I’ve ever seen the LEDs work though.
I feel like my GTK related dark mdoe settings (a mixture of NixOS and Home Manager settings) pretty much cover all the bases already.
This is the Home Manager related settings under my user account:
{
dconf.settings."org/gnome/desktop/interface" = {
color-scheme = "prefer-dark";
gtk-theme = "Adwaita-dark";
};
home.sessionVariables = {
GTK_THEME = "Adwaita:dark";
};
gtk = {
enable = true;
gtk3.extraConfig.gtk-application-prefer-dark-theme = true;
gtk4.extraConfig.gtk-application-prefer-dark-theme = true;
};
}
These are my system wide NixOS level related settings:
{
programs = {
dconf = {
enable = true;
profiles.user.databases = [{
settings."org/gnome/desktop/interface".color-scheme = "prefer-dark";
}];
};
};
}
I still end up with a blinding white interface. Like I said, this was working previously with less configuration. I’ve actually added some of this (like the dconf stuff) more recently to try to address the fact this broke at some point, but none of it has helped thus far.