You need these two files in your /home/<user> folder:
.gtkrc-2.0 & .gtkrc.mine # note they are both "dot" files ie hidden. Create them if necessary.
Don't worry too much about anything else that may or may not be in the .gtkrc-2.0 file other than you need to add the highlighted line in the example below if it is not there:
# -- THEME AUTO-WRITTEN DO NOT EDIT
include "/usr/share/themes/Adwaita/gtk-2.0/gtkrc"
style "user-font" {
font_name = "Envy Code R 12"
}
widget_class "*" style "user-font"
gtk-font-name="Envy Code R 12"
include "/home/<yourusername>/.gtkrc.mine"
# -- THEME AUTO-WRITTEN DO NOT EDIT
This imports your personal additions to a system generated file.
The important file is the 2nd one, which is where you make all your personal preference changes that will not get overridden by system defaults:
example:
# user added stuff
style "xfdesktop-icon-view" {
XfdesktopIconView::label-alpha = 0
base[NORMAL] = "#ffffff"
base[SELECTED] = "#5050ff"
base[ACTIVE] = "#0000ff"
fg[NORMAL] = "#ffffff"
fg[SELECTED] = "#ffffff"
fg[ACTIVE] = "#ffffff"
}
widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view"
style "panel"
{
bg[NORMAL] = "#3685d5"
fg[NORMAL] = "#ffffff"
}
widget_class "*Panel*" style "panel"
widget "*Panel*" style "panel"
class "*Panel*" style "panel"
The red line sets the Desktop icon surrounds to transparent (rather than a highlight colour) and the rest of it changes colours for the text foreground/background/highlight and the panel colours.
You can use any colour combinations you like to match your themes - the colours must be expressed in hexadecimal form, like #3685d5. To find the hexadecimal number for any particular colour, install a little program from the repos called 'gcolor2".
Log out and log back in when you are done.
cheers,
rhodry.
Life isn't about waiting for the storm to pass...
it's about learning to dance in the rain.