So I was screwing a little around and I found that you actually can create app specific GTK settings by creating a ".gtkrc-2.0" file and using that file instead of your default one.
So in my case where I wanted Firefox to use the Clearlooks GTK/GNOME theme, I create a ".gtkrc-2.0" file looking like this:
Code: Select all
# This file was written by KDE
# You can edit it in the KDE control center, under "GTK Styles and Fonts"
include "/opt/gnome/share/themes/Clearlooks/gtk-2.0/gtkrc"
style "user-font"
{
font_name="Sans Serif 10"
}
widget_class "*" style "user-font"
gtk-theme-name="Clearlooks"
gtk-font-name="Sans Serif 10"
Now to start Firefox with these theme settings:
Code: Select all
export GTK2_RC_FILES=".gtkrc-2.0-clearlooks" && firefoxJust a little something I thought I'd share with you guys.
Happy Hacking!

