PDA

View Full Version : color application bar


SilvioTO
April 14th, 2005, 10:32 AM
How to change only color of the application bar?
thanks.

Silvio.

Stormy Eyes
April 14th, 2005, 10:48 AM
How to change only color of the application bar?
thanks.

Silvio.

What do you mean by the "application bar"? Are you talking about the panels at the top and bottom of the screen in GNOME?

bvc
April 14th, 2005, 10:58 AM
also need to know what theme or type...engine? pixmap?

SilvioTO
April 15th, 2005, 06:05 AM
excuse me... my english... :-?
title bar of the windows.
thanks. :smile:

lao_V
April 15th, 2005, 06:12 AM
goto System -> Preferences -> Theme / Windows

bvc
April 15th, 2005, 08:44 AM
If it's a pure metacity theme you have to edit the metacity-theme-1.xml file or put the following in the gtkrc of the gtk theme and edit with your colors.
style "metacity-frame"
{
# Normal base color
bg[NORMAL] = "#bbbbbb"

# Unfocused title background color
bg[INSENSITIVE] = { 0.8, 0.8, 0.8 }

# Unfocused title text color
fg[INSENSITIVE] = { 1.55, 1.55, 1.55 }

# Focused icon color
fg[NORMAL] = { 0.2, 0.2, 0.2 }

# Focused title background color
bg[SELECTED] = { 0.5, 0.8, 0.5 }

# Focused title text color
fg[SELECTED] = "white"
}
class "MetaFrames" style "metacity-frame"

If it's a pixmap then recolor the images with the gimp.

SilvioTO
April 15th, 2005, 10:12 AM
Thanks a lot! :)