<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Windows Linux Mac Tips &#187; taskbar</title>
	<atom:link href="http://wlmtips.com/tag/taskbar/feed/" rel="self" type="application/rss+xml" />
	<link>http://wlmtips.com</link>
	<description>A tip a day...</description>
	<lastBuildDate>Thu, 04 Feb 2010 06:23:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Linux Friday: How To Change The Color Of The Gnome Taskbar Text</title>
		<link>http://wlmtips.com/2008/04/04/linux-friday-how-to-change-the-color-of-the-gnome-taskbar-text/</link>
		<comments>http://wlmtips.com/2008/04/04/linux-friday-how-to-change-the-color-of-the-gnome-taskbar-text/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 14:05:00 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Linux How To's]]></category>
		<category><![CDATA[font color]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[gnome panel]]></category>
		<category><![CDATA[taskbar]]></category>

		<guid isPermaLink="false">http://wlmtips.com/?p=68</guid>
		<description><![CDATA[In Gnome, you can set the top and bottom tool bars to be transparent, which is great if you wallpaper is a light color. The 'Applications' 'Places' 'System' buttons along with the date and time are all in the standard black font. I, however, like using a dark background as my desktop wallpaper. I didn't like having white tool bars just so that I could read the text. Here's how to change the text into whatever color you would like:

First, open the terminal and type:
gedit .gtkrc-2.0
Insert the following into the file that was opened:
style "panel"
{
fg[NORMAL] = "#ffffff"
# fg[PRELIGHT] = "#000000"
# fg[ACTIVE] = "#ffffff"
# fg[SELECTED] = "#000000"
# fg[INSENSITIVE] = "#8A857C"
# bg[NORMAL] = "#000000"
# bg[PRELIGHT] = "#dfdfdf"
#… ]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft alignnone size-full wp-image-69" style="float: left; border: 0;" title="gnome_apps" src="http://wlmtips.com/wp-content/uploads/2008/04/gnome_apps.png" alt="" width="128" height="128" />In Gnome, you can set the top and bottom tool bars to be transparent, which is great if you wallpaper is a light color. The &#8216;Applications&#8217; &#8216;Places&#8217; &#8216;System&#8217; buttons along with the date and time are all in the standard black font. I, however, like using a dark background as my desktop wallpaper. I didn&#8217;t like having white tool bars just so that I could read the text. Here&#8217;s how to change the text into whatever color you would like:</p>
<p style="text-align: left;">
<p style="text-align: left;">First, open the terminal and type:</p>
<blockquote style="text-align: left;"><p>gedit .gtkrc-2.0</p></blockquote>
<p style="text-align: left;">Insert the following into the file that was opened:</p>
<blockquote style="text-align: left;"><p>style &#8220;panel&#8221;<br />
{<br />
fg[NORMAL] = &#8220;#ffffff&#8221;<br />
# fg[PRELIGHT] = &#8220;#000000&#8243;<br />
# fg[ACTIVE] = &#8220;#ffffff&#8221;<br />
# fg[SELECTED] = &#8220;#000000&#8243;<br />
# fg[INSENSITIVE] = &#8220;#8A857C&#8221;<br />
# bg[NORMAL] = &#8220;#000000&#8243;<br />
# bg[PRELIGHT] = &#8220;#dfdfdf&#8221;<br />
# bg[ACTIVE] = &#8220;#D0D0D0&#8243;<br />
# bg[SELECTED] = &#8220;#D8BB75&#8243;<br />
# bg[INSENSITIVE] = &#8220;#EFEFEF&#8221;<br />
# base[NORMAL] = &#8220;#ffffff&#8221;<br />
# base[PRELIGHT] = &#8220;#EFEFEF&#8221;<br />
# base[ACTIVE] = &#8220;#D0D0D0&#8243;<br />
# base[SELECTED] = &#8220;#DAB566&#8243;<br />
# base[INSENSITIVE] = &#8220;#E8E8E8&#8243;<br />
# text[NORMAL] = &#8220;#161616&#8243;<br />
# text[PRELIGHT] = &#8220;#000000&#8243;<br />
# text[ACTIVE] = &#8220;#000000&#8243;<br />
# text[SELECTED] = &#8220;#ffffff&#8221;<br />
# text[INSENSITIVE] = &#8220;#8A857C&#8221;<br />
}<br />
widget &#8220;*PanelWidget*&#8221; style &#8220;panel&#8221;<br />
widget &#8220;*PanelApplet*&#8221; style &#8220;panel&#8221;<br />
class &#8220;*Panel*&#8221; style &#8220;panel&#8221;<br />
widget_class &#8220;*Mail*&#8221; style &#8220;panel&#8221;<br />
class &#8220;*notif*&#8221; style &#8220;panel&#8221;<br />
class &#8220;*Notif*&#8221; style &#8220;panel&#8221;<br />
class &#8220;*Tray*&#8221; style &#8220;panel&#8221;<br />
class &#8220;*tray*&#8221; style &#8220;panel&#8221;</p></blockquote>
<p style="text-align: left;">The top line that says:</p>
<blockquote style="text-align: left;"><p>fg[NORMAL] = &#8220;#ffffff&#8221;</p></blockquote>
<p style="text-align: left;">changes the text color to &#8216;white&#8217; or ffffff.</p>
<p style="text-align: left;">This is what it looks like:</p>
<p style="text-align: left;"><img class="alignnone size-full wp-image-70" style="0;" src="http://wlmtips.com/wp-content/uploads/2008/04/taskbar.jpg" alt="" width="235" height="23" /></p>
<p style="text-align: left;">If you want to change your text color to a specific color, you will need to get that color code and insert it here.  <a href="http://www.colourlovers.com/blog/2007/06/30/ultimate-html-color-hex-code-list/">Colourlovers.com</a> has an excellent list of the HTML color hex codes.</p>
<p style="text-align: left;">Now click save and you should be finished. All you need to do now is type this command into the terminal to reload your gnome task bars:</p>
<blockquote style="text-align: left;"><p>killall gnome-panel</p></blockquote>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://wlmtips.com/2008/08/06/launchy-keystroke-launcher-for-windows-windows-wednesday/" title="Launchy: Keystroke Launcher for Windows (Windows Wednesday)">Launchy: Keystroke Launcher for Windows (Windows Wednesday)</a></li><li><a href="http://wlmtips.com/2008/08/01/power-poll-1-linux-friday/" title="Power Poll #1 (Linux Friday)">Power Poll #1 (Linux Friday)</a></li><li><a href="http://wlmtips.com/2008/07/18/compiz-fusion-icon-linux-friday/" title="Compiz Fusion Icon (Linux Friday)">Compiz Fusion Icon (Linux Friday)</a></li><li><a href="http://wlmtips.com/2008/06/27/how-to-install-new-icons-in-ubuntu-linux-friday/" title="How To Install a New Theme in Ubuntu (Linux Friday)">How To Install a New Theme in Ubuntu (Linux Friday)</a></li><li><a href="http://wlmtips.com/2008/06/27/how-to-install-new-icons-in-ubuntu-linux-friday-2/" title="How To Install New Icons in Ubuntu (Linux Friday)">How To Install New Icons in Ubuntu (Linux Friday)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://wlmtips.com/2008/04/04/linux-friday-how-to-change-the-color-of-the-gnome-taskbar-text/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.457 seconds -->
