I want to change the default GTK theme for Windows. I know how to do that:
by modifying the settings.ini
file,
or like this:
settings = gtk_settings_get_default();
gtk_settings_set_string_property(settings, "gtk-theme-name", "ThemeName", NULL);
the problem is the documentation does not provide a list of possible values to use in place of ThemeName
, what values does that argument accept?