Remove background color of every desktop icon in xfce4

chaox_xfce_desktop1.png


If you want to remove the background color of every desktop icon in xfce4 this is the tip!
create on your home directory a file named .gtkrc-2.0 and copy this into it:

Code:
style "xfdesktop-icon-view" {
XfdesktopIconView::label-alpha = 0

fg[NORMAL] = "#ffffff"
fg[SELECTED] = "#ffffff"
fg[ACTIVE] = "#ffffff"
}


widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view"

Done!

Now must look like this:

Screenshot_030413_17_17_39.png
 
Back
Top