<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://dev1galaxy.org/extern.php?action=feed&amp;tid=116&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / [solved] XFCE icon labels]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=116</link>
		<description><![CDATA[The most recent posts in [solved] XFCE icon labels.]]></description>
		<lastBuildDate>Fri, 20 Jan 2017 09:26:10 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: [solved] XFCE icon labels]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=508#p508</link>
			<description><![CDATA[<p>Don&#039;t you believe them, 6 years old is the latest trend...</p><p>Geoff</p>]]></description>
			<author><![CDATA[dummy@example.com (Geoff 42)]]></author>
			<pubDate>Fri, 20 Jan 2017 09:26:10 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=508#p508</guid>
		</item>
		<item>
			<title><![CDATA[Re: [solved] XFCE icon labels]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=507#p507</link>
			<description><![CDATA[<p>Sigh. Several people have told me how wrong I am: apparently in computing, anything older than 6 years is ancient ...</p>]]></description>
			<author><![CDATA[dummy@example.com (ralph.ronnquist)]]></author>
			<pubDate>Fri, 20 Jan 2017 02:09:44 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=507#p507</guid>
		</item>
		<item>
			<title><![CDATA[Re: [solved] XFCE icon labels]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=505#p505</link>
			<description><![CDATA[<p>My friend, to use &quot;ancient&quot; about things from some 30 or so years ago is also a way to climb the scale. In any case, I got a good answer to my question. We can meet up and discuss the rest sometime, somewhere.</p>]]></description>
			<author><![CDATA[dummy@example.com (ralph.ronnquist)]]></author>
			<pubDate>Wed, 18 Jan 2017 22:38:11 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=505#p505</guid>
		</item>
		<item>
			<title><![CDATA[Re: [solved] XFCE icon labels]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=496#p496</link>
			<description><![CDATA[<div class="quotebox"><cite>ralph.ronnquist wrote:</cite><blockquote><div><p>I then found out that those console colours are hardcoded into the kernel, in a palette of 8 named colours, with &quot;white&quot; conveniently naming the gray colour. This seems to have happened many years ago, but that doesn&#039;t place it lower on the stupid scale.</p></div></blockquote></div><p>Not stupid, just conforming to ancient standards. The original ANSI standard devices would increase color intensity for the &quot;bold&quot; option (there was only one font). Combine the codes for &quot;bold&quot; and &quot;white&quot; to get actual white, and expect the unbold &quot;yellow&quot; to be amber, even brownish on some terminals.</p>]]></description>
			<author><![CDATA[dummy@example.com (cpoakes)]]></author>
			<pubDate>Wed, 18 Jan 2017 16:39:46 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=496#p496</guid>
		</item>
		<item>
			<title><![CDATA[Re: [solved] XFCE icon labels]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=490#p490</link>
			<description><![CDATA[<p>Thanks.</p><div class="quotebox"><blockquote><div><p>have no idea what your talking about . . . I didn&#039;t know a kernel had a color!!&#160; LOL!</p></div></blockquote></div><p>yes :-) a while ago I thought to experiment with the C-A-f1 console, to have black text on white instead of the washed out gray on black (or sometimes dirty dark green). I then found out that those console colours are hardcoded into the kernel, in a palette of 8 named colours, with &quot;white&quot; conveniently naming the gray colour. This seems to have happened many years ago, but that doesn&#039;t place it lower on the stupid scale. In any case, I eventually worked out how to achieve black on actual white on the console, and that it&#039;s not worth fighting for.</p>]]></description>
			<author><![CDATA[dummy@example.com (ralph.ronnquist)]]></author>
			<pubDate>Wed, 18 Jan 2017 03:04:03 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=490#p490</guid>
		</item>
		<item>
			<title><![CDATA[Re: [solved] XFCE icon labels]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=487#p487</link>
			<description><![CDATA[<div class="quotebox"><cite>ralph.ronnquist wrote:</cite><blockquote><div><p>Is there an easy way for me to have the (beta2) XFCE desktop icon labels text in black?<br />Just a vanilla installation with everything default.</p></div></blockquote></div><p>You&#039;ll need to create a .gtkrc-2.0 file in your user directory.&#160; Here&#039;s an example.&#160; Pick and choose the parts you want: </p><div class="codebox"><pre><code>style &quot;xfdesktop-icon-view&quot; { 

    XfdesktopIconVIew::cell-spacing = 6 
    XfdesktopIconView::cell-padding = 6 
    XfdesktopIconView::cell-text-width-proportion = 2.5

    XfdesktopIconView::label-alpha = 0
	XfdesktopIconView::selected-label-alpha = 0

    base[NORMAL] = &quot;#626D31&quot; 
    base[SELECTED] = &quot;#A0A985&quot; 
    base[ACTIVE] = &quot;#A0A985&quot; 

    fg[NORMAL] = &quot;#ffffff&quot; 
    fg[SELECTED] = &quot;#DDDFD3&quot; 
    fg[ACTIVE] = &quot;#DDDFD3&quot; 
} 

widget_class &quot;*XfdesktopIconView*&quot; style &quot;xfdesktop-icon-view&quot;</code></pre></div><p>There is some additional Xfce Desktop related info in <strong><a href="https://dev1galaxy.org/viewtopic.php?id=110" rel="nofollow">this post</a></strong>.</p><div class="quotebox"><cite>ralph.ronnquist wrote:</cite><blockquote><div><p>(and I think whoever made the &quot;white&quot; kernel colour be gray should have a separate talking-to)</p></div></blockquote></div><p>I have no idea what your talking about . . . I didn&#039;t know a kernel had a color!!&#160; LOL!</p>]]></description>
			<author><![CDATA[dummy@example.com (golinux)]]></author>
			<pubDate>Wed, 18 Jan 2017 02:39:53 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=487#p487</guid>
		</item>
		<item>
			<title><![CDATA[[solved] XFCE icon labels]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=486#p486</link>
			<description><![CDATA[<p>Is there an easy way for me to have the (beta2) XFCE desktop icon labels text in black?<br />Just a vanilla installation with everything default.</p><p>(and I think whoever made the &quot;white&quot; kernel colour be gray should have a separate talking-to)</p>]]></description>
			<author><![CDATA[dummy@example.com (ralph.ronnquist)]]></author>
			<pubDate>Wed, 18 Jan 2017 00:15:51 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=486#p486</guid>
		</item>
	</channel>
</rss>
