Page 1 of 1
pcmanfm background color
Posted: Sat Jan 26, 2013 9:49 am
by doru001
How can I set the pcmanfm background color, in what configuration file and using what syntax? Is this information published anywhere on the web? I found an example for changing the Side Pane background color
http://ubuntuforums.org/showthread.php?t=1566335, but it does not seem to work for me.
Re: pcmanfm background color
Posted: Fri Feb 01, 2013 8:33 pm
by Rex Bouwense
Re: pcmanfm background color
Posted: Fri May 10, 2013 3:01 pm
by rayzer
if theyre not already installed you should have the lxappearance and obconf packages, that will allow you to change themes, window borders colours, icons etc
Re: pcmanfm background color
Posted: Sun Aug 18, 2013 9:56 pm
by LStranger
I believe you can use gtk themes for that purpose.
Re: pcmanfm background color
Posted: Wed Aug 21, 2013 6:27 am
by drooly
i suppose you want to change the background color of the file managers window, without actually changing the whole theme?
i have a weird yellow background for my file manager when i open it with root privileges:

that what you want?
it's a matter of gtk; you can add a few lines to your ~/.gtkrc-2.0.mine
Code: Select all
style "mingstil"
{
base[NORMAL] = "#FCAF3E"
base[ACTIVE] = "#FCAF3E"
}
# widget_class "*" style "default"
class "GtkWidget" style "mingstil"
#class "FmMainWin.*.FmTabPage" style "mingstil"
#class "*Entry*" style "mingstil"
'mingstil' is a totally meaningless word i made up (a virtual beer if someone realizes what it means;-)).
some options are commented out, you can play around with that.