danth / stylix

System-wide colorscheming and typography for NixOS
https://stylix.danth.me/
MIT License
1.11k stars 139 forks source link

Qt support #254

Open musjj opened 7 months ago

musjj commented 7 months ago

It looks like that theming is currently not supported for Qt apps, at least outside of KDE. I think one easy way to support it is by generating a theme for gtk2, which is compatible with qt:

qt = {
  enable = true;
  platformTheme = "gtk";
  style.name = "gtk2";
};
danth commented 7 months ago

Possibly related: #142