<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[CrunchBang Linux Forums - My Conky Config]]></title>
		<link>http://crunchbanglinux.org/forums/topic/59/my-conky-config/</link>
		<description><![CDATA[The most recent posts in My Conky Config.]]></description>
		<lastBuildDate>Mon, 30 Aug 2010 00:01:49 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: My Conky Config]]></title>
			<link>http://crunchbanglinux.org/forums/post/83817/#p83817</link>
<br />
<b>Warning</b>:  Missing argument 2 for parse_message(), called in /home/corenominal/www/crunchbanglinux.org/forums/extern.php on line 131 and defined in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>784</b><br />
<br />
<b>Notice</b>:  Undefined variable: hide_smilies in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>820</b><br />
			<description><![CDATA[<div class="quotebox"><cite>mrpeachy wrote:</cite><blockquote><p>@ sector11 - so you are saying that you can&#039;t teach an old dog new tricks? :D</p><p>here is an updated version of my animated text conky</p></blockquote></div><p>No not quite. This old dog switched from the other OS to Linux with almost no problem - an open mind takes out a LOT of those &quot;system specific&quot; problems.</p><p>I&#039;m simply saying that with the inclusion of Lua and and Cairo bindings in conky, I&#039;m &quot;behind the times&quot;, as I know nothing about them.&nbsp; Didn&#039;t say I can&#039;t learn it, but I will say this it would be an uphill struggle for me.</p><p>Years ago I could do some programming in C-64 and DOS Basic and was quite often approached for BATch file help, but I have never gone beyond that.</p><p>Well except for the &quot;basic&quot; conky stuff, if you check my conkys, they are almost all comprised of others work adapted to my liking.&nbsp; :D</p>]]></description>
			<author><![CDATA[dummy@example.com (Sector11)]]></author>
			<pubDate>Mon, 30 Aug 2010 00:01:49 +0000</pubDate>
			<guid>http://crunchbanglinux.org/forums/post/83817/#p83817</guid>
		</item>
		<item>
			<title><![CDATA[Re: My Conky Config]]></title>
			<link>http://crunchbanglinux.org/forums/post/83807/#p83807</link>
<br />
<b>Warning</b>:  Missing argument 2 for parse_message(), called in /home/corenominal/www/crunchbanglinux.org/forums/extern.php on line 131 and defined in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>784</b><br />
<br />
<b>Notice</b>:  Undefined variable: hide_smilies in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>820</b><br />
			<description><![CDATA[<p>@ sector11 - so you are saying that you can&#039;t teach an old dog new tricks? :D</p><p>here is an updated version of my animated text conky<br />thanks to iggykoopa it is now relatively simple for anyone to put anything they like in terms of output...<br />relatively compared to the last one, but it is still a bit tricky as you have to work out your timings<br /><a href="http://www.imagebam.com/image/81f8cf95367547"><span class="postimg"><img src="http://thumbnails26.imagebam.com/9537/81f8cf95367547.jpg" alt="http://thumbnails26.imagebam.com/9537/81f8cf95367547.jpg" /></span></a> <br />you can see it work here:<br /><a href="http://blip.tv/file/4059911">http://blip.tv/file/4059911</a></p><p>here is the code that makes it work<br /></p><div class="codebox"><pre><code>--animated text lua script by mrpeachy 2010
require &#039;cairo&#039;

function string:split(delimiter)
local result = { }
local from  = 1
local delim_from, delim_to = string.find( self, delimiter, from  )
while delim_from do
table.insert( result, string.sub( self, from , delim_from-1 ) )
from  = delim_to + 1
delim_from, delim_to = string.find( self, delimiter, from  )
end
table.insert( result, string.sub( self, from  ) )
return result
end


function number_to_words(text)
textlength=string.len(text)
textcut=string.gsub(text, &quot;.&quot;, &quot;%1|&quot;)
texttable=string.split(textcut, &quot;|&quot;)
--for NUMBERS from 1 to 999
--for numbers 1 digit number----------
if textlength==1 then
    if texttable[1]==&quot;1&quot; then
    firstdigit=&quot;one&quot;
    elseif texttable[1]==&quot;2&quot; then
    firstdigit=&quot;two&quot;
    elseif texttable[1]==&quot;3&quot; then
    firstdigit=&quot;three&quot;
    elseif texttable[1]==&quot;4&quot; then
    firstdigit=&quot;four&quot;
    elseif texttable[1]==&quot;5&quot; then
    firstdigit=&quot;five&quot;
    elseif texttable[1]==&quot;6&quot; then
    firstdigit=&quot;six&quot;
    elseif texttable[1]==&quot;7&quot; then
    firstdigit=&quot;seven&quot;
    elseif texttable[1]==&quot;8&quot; then
    firstdigit=&quot;eight&quot;
    elseif texttable[1]==&quot;9&quot; then
    firstdigit=&quot;nine&quot;
    elseif texttable[1]==&quot;0&quot; then
    firstdigit=&quot;zero&quot;
    end
return firstdigit
end
--for 2 digit number------------------
if textlength==2 then
    if texttable[1]==&quot;1&quot; then
        seconddigit=&quot;&quot;
        spacer=&quot;&quot;
        if texttable[2]==&quot;0&quot; then
        firstdigit=&quot;ten&quot;
        elseif texttable[2]==&quot;1&quot; then
        firstdigit=&quot;eleven&quot;
        elseif texttable[2]==&quot;2&quot; then
        firstdigit=&quot;twelve&quot;
        elseif texttable[2]==&quot;3&quot; then
        firstdigit=&quot;thirteen&quot;
        elseif texttable[2]==&quot;4&quot; then
        firstdigit=&quot;fourteen&quot;
        elseif texttable[2]==&quot;5&quot; then
        firstdigit=&quot;fifteen&quot;
        elseif texttable[2]==&quot;6&quot; then
        firstdigit=&quot;sixteen&quot;
        elseif texttable[2]==&quot;7&quot; then
        fisrtdigit=&quot;seventeen&quot;
        elseif texttable[2]==&quot;8&quot; then
        firstdigit=&quot;eighteen&quot;
        elseif texttable[2]==&quot;9&quot; then
        firstdigit=&quot;nineteen&quot;
        end
    end   
    if texttable[1]&gt;&quot;1&quot; then
        spacer=&quot; &quot;
        if texttable[1]==&quot;2&quot; then
        seconddigit=&quot;twenty&quot;
        elseif texttable[1]==&quot;3&quot; then
        seconddigit=&quot;thirty&quot;
        elseif texttable[1]==&quot;4&quot; then
        seconddigit=&quot;fourty&quot;
        elseif texttable[1]==&quot;5&quot; then
        seconddigit=&quot;fifty&quot;
        elseif texttable[1]==&quot;6&quot; then
        seconddigit=&quot;sixty&quot;
        elseif texttable[1]==&quot;7&quot; then
        seconddigit=&quot;seventy&quot;
        elseif texttable[1]==&quot;8&quot; then
        seconddigit=&quot;eighty&quot;
        elseif texttable[1]==&quot;9&quot; then
        seconddigit=&quot;ninety&quot;
        end    
        if texttable[2]==&quot;1&quot; then
        firstdigit=&quot;one&quot;
        elseif texttable[2]==&quot;2&quot; then
        firstdigit=&quot;two&quot;
        elseif texttable[2]==&quot;3&quot; then
        firstdigit=&quot;three&quot;
        elseif texttable[2]==&quot;4&quot; then
        firstdigit=&quot;four&quot;
        elseif texttable[2]==&quot;5&quot; then
        firstdigit=&quot;five&quot;
        elseif texttable[2]==&quot;6&quot; then
        firstdigit=&quot;six&quot;
        elseif texttable[2]==&quot;7&quot; then
        firstdigit=&quot;seven&quot;
        elseif texttable[2]==&quot;8&quot; then
        firstdigit=&quot;eight&quot;
        elseif texttable[2]==&quot;9&quot; then
        firstdigit=&quot;nine&quot;
        elseif texttable[2]==&quot;0&quot; then
        firstdigit=&quot;&quot;
        spacer=&quot;&quot;
        end
     end
return ((seconddigit) .. (spacer) .. (firstdigit))
end
--for 3 digit numbers-----------------------------
if textlength==3 then
    if texttable[2]==&quot;0&quot; and texttable[3]==&quot;0&quot; then space=&quot;&quot; end
    if texttable[2]&gt;&quot;0&quot; or texttable[3]&gt;&quot;0&quot; then space=&quot; and &quot; end
    if texttable[2]==&quot;0&quot; and texttable[3]&gt;&quot;0&quot; then spacer=&quot;&quot; end
    
    if texttable[1]==&quot;1&quot; then
    thirddigit=&quot;one hundred&quot;
    elseif texttable[1]==&quot;2&quot; then
    thirddigit=&quot;two hundred&quot;
    elseif texttable[1]==&quot;3&quot; then
    thirddigit=&quot;three hundred&quot;
    elseif texttable[1]==&quot;4&quot; then
    thirddigit=&quot;four hundred&quot;
    elseif texttable[1]==&quot;5&quot; then
    thirddigit=&quot;five hundred&quot;
    elseif texttable[1]==&quot;6&quot; then
    thirddigit=&quot;six hundred&quot;
    elseif texttable[1]==&quot;7&quot; then
    thirddigit=&quot;seven hundred&quot;
    elseif texttable[1]==&quot;8&quot; then
    thirddigit=&quot;eight hundred&quot;
    elseif texttable[1]==&quot;9&quot; then
    thirddigit=&quot;nine hundred&quot;
    end
    if texttable[2]==&quot;0&quot; or texttable[2]&gt;&quot;1&quot; then
        if texttable[3]==&quot;1&quot; then
        firstdigit=&quot;one&quot;
        elseif texttable[3]==&quot;2&quot; then
        firstdigit=&quot;two&quot;
        elseif texttable[3]==&quot;3&quot; then
        firstdigit=&quot;three&quot;
        elseif texttable[3]==&quot;4&quot; then
        firstdigit=&quot;four&quot;
        elseif texttable[3]==&quot;5&quot; then
        firstdigit=&quot;five&quot;
        elseif texttable[3]==&quot;6&quot; then
        firstdigit=&quot;six&quot;
        elseif texttable[3]==&quot;7&quot; then
        firstdigit=&quot;seven&quot;
        elseif texttable[3]==&quot;8&quot; then
        firstdigit=&quot;eight&quot;
        elseif texttable[3]==&quot;9&quot; then
        firstdigit=&quot;nine&quot;
        elseif texttable[3]==&quot;0&quot; then
        firstdigit=&quot;&quot;
        spacer=&quot;&quot;
        end 
    end
    if texttable[2]==&quot;1&quot; then
        seconddigit=&quot;&quot;
        spacer=&quot;&quot;  
        if texttable[3]==&quot;0&quot; then
        firstdigit=&quot;ten&quot;
        elseif texttable[3]==&quot;1&quot; then
        firstdigit=&quot;eleven&quot;
        elseif texttable[3]==&quot;2&quot; then
        firstdigit=&quot;twelve&quot;
        elseif texttable[3]==&quot;3&quot; then
        firstdigit=&quot;thirteen&quot;
        elseif texttable[3]==&quot;4&quot; then
        firstdigit=&quot;fourteen&quot;
        elseif texttable[3]==&quot;5&quot; then
        firstdigit=&quot;fifteen&quot;
        elseif texttable[3]==&quot;6&quot; then
        firstdigit=&quot;sixteen&quot;
        elseif texttable[3]==&quot;7&quot; then
        firstdigit=&quot;seventeen&quot;
        elseif texttable[3]==&quot;8&quot; then
        firstdigit=&quot;eighteen&quot;
        elseif texttable[3]==&quot;9&quot; then
        firstdigit=&quot;nineteen&quot;
        end
    end
    if texttable[2] &gt;&quot;1&quot; then
        spacer=&quot; &quot;    
        if texttable[2]==&quot;2&quot; then
        seconddigit=&quot;twenty&quot;
        elseif texttable[2]==&quot;3&quot; then
        seconddigit=&quot;thirty&quot;
        elseif texttable[2]==&quot;4&quot; then
        seconddigit=&quot;fourty&quot;
        elseif texttable[2]==&quot;5&quot; then
        seconddigit=&quot;fifty&quot;
        elseif texttable[2]==&quot;6&quot; then
        seconddigit=&quot;sixty&quot;
        elseif texttable[2]==&quot;7&quot; then
        seconddigit=&quot;seventy&quot;
        elseif texttable[2]==&quot;8&quot; then
        seconddigit=&quot;eighty&quot;
        elseif texttable[2]==&quot;9&quot; then
        seconddigit=&quot;ninety&quot;
        elseif texttable[2]==&quot;0&quot; then
        seconddigit=&quot;&quot;
        end
    end
return ((thirddigit) .. (space) .. (seconddigit) .. (spacer) .. (firstdigit))
end
end--of function

function lengthreturn(n)
t1=n
end


function conky_draw_aniconk()
if conky_window == nil then return end
local cs = cairo_xlib_surface_create(conky_window.display, conky_window.drawable, conky_window.visual, conky_window.width, conky_window.height)
cr = cairo_create(cs)
local updates=tonumber(conky_parse(&#039;${updates}&#039;))

if updates&gt; 3 then

timer=(updates % 120)+1
timer2=(updates % 8)+1
if timer2==1 then
cpu=number_to_words(conky_parse(&quot;${cpu}&quot;))
ram=number_to_words(conky_parse(&quot;${memperc}&quot;))
end
if updates==4 then t1=1 end
-------------------------------------------------
timer=(updates % t1)+1
-------------------------------------------------
--settings for line 1
--enter text to be shown
line=(&quot;activating conky sys info...&quot;)
--enter animation cycle start time (in conky cycles)
start=0
--enter animation cycle length (to display entire string type &quot;all&quot;)
length=&quot;all&quot;
--enter static time after animation, to appear for remaning time type &quot;remain&quot;
pause=&quot;remain&quot;
--enter position and font details
across=10
down=240
fontsize=12
font=&quot;Mono&quot;
---------------------------------------------------
if length==&quot;all&quot; then length=string.len(line) end
remain=t1-length-start
if pause==&quot;remain&quot; then pause=remain end
sub=string.gsub(line, &quot;.&quot;, &quot;%1|&quot;)
split=string.split(sub, &quot;|&quot;)
time=start+length+pause
tab={}
for i=1,table.getn(split) do
   temp = &quot;&quot;
   for ii=1,i do
     temp = (temp .. split[ii])
     tab[i]=temp
  end
end
cairo_select_font_face (cr, font, CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL);
cairo_set_font_size (cr, 12)
cairo_set_source_rgba (cr, 1, 1, 1, 1)
if timer&gt;start and timer&lt;=start+length then
cairo_move_to (cr, across, down)
cairo_show_text (cr, tab[timer-start])
end
if timer&gt;start+length and timer&lt;=start+length+pause then
cairo_move_to (cr, across, down)
cairo_show_text (cr, tab[length])
end
length=start+length

--settings for line 2
--enter text to be shown
line=(&quot;scanning system...&quot;)
--enter animation cycle start time (in conky cycles), if you want this to start after the line before finishes, type length
start=length
--enter animation cycle length (to display entire string type &quot;all&quot;)
length=&quot;all&quot;
--enter static time after animation
pause=&quot;remain&quot;
--enter position and font details
across=10
down=260
fontsize=12
font=&quot;Mono&quot;
---------------------------------------------------
if length==&quot;all&quot; then length=string.len(line) end
remain=t1-length-start
if pause==&quot;remain&quot; then pause=remain end
sub=string.gsub(line, &quot;.&quot;, &quot;%1|&quot;)
split=string.split(sub, &quot;|&quot;)
time=start+length+pause
tab={}
for i=1,table.getn(split) do
   temp = &quot;&quot;
   for ii=1,i do
     temp = (temp .. split[ii])
     tab[i]=temp
  end
end
cairo_select_font_face (cr, font, CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL);
cairo_set_font_size (cr, 12)
cairo_set_source_rgba (cr, 1, 1, 1, 1)
if timer&gt;start and timer&lt;=start+length then
cairo_move_to (cr, across, down)
cairo_show_text (cr, tab[timer-start])
end
if timer&gt;start+length and timer&lt;=start+length+pause then
cairo_move_to (cr, across, down)
cairo_show_text (cr, tab[length])
end
length=start+length

--settings for line 3
--enter text to be shown
line=(&quot;processor at &quot; .. cpu .. &quot; percent....................................................&quot;)
--enter animation cycle start time (in conky cycles)
start=length
--enter animation cycle length
length=40
--enter static time after animation
pause=5
--enter position and font details
across=10
down=280
fontsize=12
font=&quot;Mono&quot;
---------------------------------------------------
if length==&quot;all&quot; then length=string.len(line) end
remain=t1-length-start
if pause==&quot;remain&quot; then pause=remain end
sub=string.gsub(line, &quot;.&quot;, &quot;%1|&quot;)
split=string.split(sub, &quot;|&quot;)
time=start+length+pause
tab={}
for i=1,table.getn(split) do
   temp = &quot;&quot;
   for ii=1,i do
     temp = (temp .. split[ii])
     tab[i]=temp
  end
end
cairo_select_font_face (cr, font, CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL);
cairo_set_font_size (cr, 12)
cairo_set_source_rgba (cr, 1, 1, 1, 1)
if timer&gt;start and timer&lt;=start+length then
cairo_move_to (cr, across, down)
cairo_show_text (cr, tab[timer-start])
end
if timer&gt;start+length and timer&lt;=start+length+pause then
cairo_move_to (cr, across, down)
cairo_show_text (cr, tab[length])
end
length=start+length

--settings for line 4
--enter text to be shown
line=(&quot;memory at &quot; .. ram .. &quot; percent....................................................&quot;)
--enter animation cycle start time (in conky cycles)
start=length-40
--enter animation cycle length
length=40
--enter static time after animation
pause=5
--enter position and font details
across=10
down=300
fontsize=12
font=&quot;Mono&quot;
---------------------------------------------------
if length==&quot;all&quot; then length=string.len(line) end
remain=t1-length-start
if pause==&quot;remain&quot; then pause=remain end
sub=string.gsub(line, &quot;.&quot;, &quot;%1|&quot;)
split=string.split(sub, &quot;|&quot;)
time=start+length+pause
tab={}
for i=1,table.getn(split) do
   temp = &quot;&quot;
   for ii=1,i do
     temp = (temp .. split[ii])
     tab[i]=temp
  end
end
cairo_select_font_face (cr, font, CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL);
cairo_set_font_size (cr, 12)
cairo_set_source_rgba (cr, 1, 1, 1, 1)
if timer&gt;start and timer&lt;=start+length then
cairo_move_to (cr, across, down)
cairo_show_text (cr, tab[timer-start])
end
if timer&gt;start+length and timer&lt;=start+length+pause then
cairo_move_to (cr, across, down)
cairo_show_text (cr, tab[length])
end
length=start+length

--settings for line 5
--enter text to be shown
line=(&quot;processor at &quot; .. cpu .. &quot; percent....................................................&quot;)
--enter animation cycle start time (in conky cycles)
start=length+pause
--enter animation cycle length
length=40
--enter static time after animation
pause=&quot;remain&quot;
--enter position and font details
across=10
down=280
fontsize=12
font=&quot;Mono&quot;
---------------------------------------------------
if length==&quot;all&quot; then length=string.len(line) end
remain=t1-length-start
if pause==&quot;remain&quot; then pause=remain end
sub=string.gsub(line, &quot;.&quot;, &quot;%1|&quot;)
split=string.split(sub, &quot;|&quot;)
time=start+length+pause
tab={}
for i=1,table.getn(split) do
   temp = &quot;&quot;
   for ii=1,i do
     temp = (temp .. split[ii])
     tab[i]=temp
  end
end
cairo_select_font_face (cr, font, CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL);
cairo_set_font_size (cr, 12)
cairo_set_source_rgba (cr, 1, 1, 1, 1)
if timer&gt;start and timer&lt;=start+length then
cairo_move_to (cr, across, down)
cairo_show_text (cr, tab[timer-start])
end
if timer&gt;start+length and timer&lt;=start+length+pause then
cairo_move_to (cr, across, down)
cairo_show_text (cr, tab[length])
end
length=start+length

--settings for line 6
--enter text to be shown
line=(&quot;memory at &quot; .. ram .. &quot; percent....................................................&quot;)
--enter animation cycle start time (in conky cycles)
start=length-40
--enter animation cycle length
length=40
--enter static time after animation
pause=&quot;remain&quot;
--enter position and font details
across=10
down=300
fontsize=12
font=&quot;Mono&quot;
---------------------------------------------------
if length==&quot;all&quot; then length=string.len(line) end
remain=t1-length-start
if pause==&quot;remain&quot; then pause=remain end
sub=string.gsub(line, &quot;.&quot;, &quot;%1|&quot;)
split=string.split(sub, &quot;|&quot;)
time=start+length+pause
tab={}
for i=1,table.getn(split) do
   temp = &quot;&quot;
   for ii=1,i do
     temp = (temp .. split[ii])
     tab[i]=temp
  end
end
cairo_select_font_face (cr, font, CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL);
cairo_set_font_size (cr, 12)
cairo_set_source_rgba (cr, 1, 1, 1, 1)
if timer&gt;start and timer&lt;=start+length then
cairo_move_to (cr, across, down)
cairo_show_text (cr, tab[timer-start])
end
if timer&gt;start+length and timer&lt;=start+length+pause then
cairo_move_to (cr, across, down)
cairo_show_text (cr, tab[length])
end
length=start+length

--settings for line 7
--enter text to be shown
line=(&quot;....end conky sys report&quot;)
--enter animation cycle start time (in conky cycles)
start=length
--enter animation cycle length
length=&quot;all&quot;
--enter static time after animation
pause=1
--enter position and font details
across=10
down=320
fontsize=12
font=&quot;Mono&quot;
---------------------------------------------------
if length==&quot;all&quot; then length=string.len(line) end
remain=t1-length-start
if pause==&quot;remain&quot; then pause=remain end
sub=string.gsub(line, &quot;.&quot;, &quot;%1|&quot;)
split=string.split(sub, &quot;|&quot;)
time=start+length+pause
tab={}
for i=1,table.getn(split) do
   temp = &quot;&quot;
   for ii=1,i do
     temp = (temp .. split[ii])
     tab[i]=temp
  end
end
cairo_select_font_face (cr, font, CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL);
cairo_set_font_size (cr, 12)
cairo_set_source_rgba (cr, 1, 1, 1, 1)
if timer&gt;start and timer&lt;=start+length then
cairo_move_to (cr, across, down)
cairo_show_text (cr, tab[timer-start])
end
if timer&gt;start+length and timer&lt;=start+length+pause then
cairo_move_to (cr, across, down)
cairo_show_text (cr, tab[length])
end
length=start+length
lengthreturn(length+pause)

end
end</code></pre></div><p>plus you have to set your update interval in conky higher than once per second<br />in my example i used 4 cycles per second</p><p>there are a few kinks to be worked out and you will see plenty of error messages in the terminal until the script sorts itself out</p>]]></description>
			<author><![CDATA[dummy@example.com (mrpeachy)]]></author>
			<pubDate>Sun, 29 Aug 2010 20:52:40 +0000</pubDate>
			<guid>http://crunchbanglinux.org/forums/post/83807/#p83807</guid>
		</item>
		<item>
			<title><![CDATA[Re: My Conky Config]]></title>
			<link>http://crunchbanglinux.org/forums/post/83715/#p83715</link>
<br />
<b>Warning</b>:  Missing argument 2 for parse_message(), called in /home/corenominal/www/crunchbanglinux.org/forums/extern.php on line 131 and defined in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>784</b><br />
<br />
<b>Notice</b>:  Undefined variable: hide_smilies in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>820</b><br />
			<description><![CDATA[<p><strong>@ mrpeachy</strong></p><p>WOW! ... I have to agree with gutterslob ..........<br /></p><div class="quotebox"><cite>gutterslob wrote:</cite><blockquote><p>They should hand you some sort of Conky Lifetime Achievement Award!!</p></blockquote></div><p>Conky has gone sooooooooo far beyond my abilities, because like Gutterslob, I am Lua illiterate.</p><p>Today I sit and watch what people like you are doing with conky ... and cloning a few tips here and there.</p>]]></description>
			<author><![CDATA[dummy@example.com (Sector11)]]></author>
			<pubDate>Sun, 29 Aug 2010 00:45:46 +0000</pubDate>
			<guid>http://crunchbanglinux.org/forums/post/83715/#p83715</guid>
		</item>
		<item>
			<title><![CDATA[Re: My Conky Config]]></title>
			<link>http://crunchbanglinux.org/forums/post/83712/#p83712</link>
<br />
<b>Warning</b>:  Missing argument 2 for parse_message(), called in /home/corenominal/www/crunchbanglinux.org/forums/extern.php on line 131 and defined in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>784</b><br />
<br />
<b>Notice</b>:  Undefined variable: hide_smilies in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>820</b><br />
			<description><![CDATA[<div class="quotebox"><cite>gutterslob wrote:</cite><blockquote><p>THAT is totally slick!!<br />They should hand you some sort of Conky Lifetime Achievement Award!!</p><p>Sorry I can&#039;t help... I&#039;m Lua illiterate :-(</p></blockquote></div><p>Thanks gutterslob! :)</p><p>right now it&#039;s in a concept stage... a bit of flim flammery contributing to make it work</p><p>but i hope to make it so that you can input any text, with some settings, and the lua works out everything else.</p>]]></description>
			<author><![CDATA[dummy@example.com (mrpeachy)]]></author>
			<pubDate>Sun, 29 Aug 2010 00:29:49 +0000</pubDate>
			<guid>http://crunchbanglinux.org/forums/post/83712/#p83712</guid>
		</item>
		<item>
			<title><![CDATA[Re: My Conky Config]]></title>
			<link>http://crunchbanglinux.org/forums/post/83710/#p83710</link>
<br />
<b>Warning</b>:  Missing argument 2 for parse_message(), called in /home/corenominal/www/crunchbanglinux.org/forums/extern.php on line 131 and defined in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>784</b><br />
<br />
<b>Notice</b>:  Undefined variable: hide_smilies in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>820</b><br />
			<description><![CDATA[<div class="quotebox"><cite>mrpeachy wrote:</cite><blockquote><p>here is a concept for a conky display i have been thinking about for a while</p><p><a href="http://blip.tv/file/4057207">http://blip.tv/file/4057207</a> </p><p>the interesting part starts at 10 seconds :)</p><p>i just need to figure out if i can make the process automated and configurable</p></blockquote></div><p>THAT is totally slick!!<br />They should hand you some sort of Conky Lifetime Achievement Award!!</p><p>Wish I was better at conky. A lot of ideas I can&#039;t realize thanks to my Lua illiteracy :-(</p>]]></description>
			<author><![CDATA[dummy@example.com (gutterslob)]]></author>
			<pubDate>Sun, 29 Aug 2010 00:25:36 +0000</pubDate>
			<guid>http://crunchbanglinux.org/forums/post/83710/#p83710</guid>
		</item>
		<item>
			<title><![CDATA[Re: My Conky Config]]></title>
			<link>http://crunchbanglinux.org/forums/post/83690/#p83690</link>
<br />
<b>Warning</b>:  Missing argument 2 for parse_message(), called in /home/corenominal/www/crunchbanglinux.org/forums/extern.php on line 131 and defined in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>784</b><br />
<br />
<b>Notice</b>:  Undefined variable: hide_smilies in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>820</b><br />
			<description><![CDATA[<p>here is a concept for a conky display i have been thinking about for a while</p><p><a href="http://blip.tv/file/4057207">http://blip.tv/file/4057207</a> </p><p>the interesting part starts at 10 seconds :)</p><p>i just need to figure out if i can make the process automated and configurable</p>]]></description>
			<author><![CDATA[dummy@example.com (mrpeachy)]]></author>
			<pubDate>Sat, 28 Aug 2010 22:24:31 +0000</pubDate>
			<guid>http://crunchbanglinux.org/forums/post/83690/#p83690</guid>
		</item>
		<item>
			<title><![CDATA[Re: My Conky Config]]></title>
			<link>http://crunchbanglinux.org/forums/post/83614/#p83614</link>
<br />
<b>Warning</b>:  Missing argument 2 for parse_message(), called in /home/corenominal/www/crunchbanglinux.org/forums/extern.php on line 131 and defined in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>784</b><br />
<br />
<b>Notice</b>:  Undefined variable: hide_smilies in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>820</b><br />
			<description><![CDATA[<div class="quotebox"><cite>crunchmic wrote:</cite><blockquote><p>Sure, it was done by a friend of mine on deviantart.&nbsp; ;)</p><p>Get it here: <a href="http://tinyurl.com/3xn7or2">http://tinyurl.com/3xn7or2</a></p><p>Mic</p></blockquote></div><p>Thank you.</p>]]></description>
			<author><![CDATA[dummy@example.com (Sector11)]]></author>
			<pubDate>Sat, 28 Aug 2010 15:53:40 +0000</pubDate>
			<guid>http://crunchbanglinux.org/forums/post/83614/#p83614</guid>
		</item>
		<item>
			<title><![CDATA[Re: My Conky Config]]></title>
			<link>http://crunchbanglinux.org/forums/post/83601/#p83601</link>
<br />
<b>Warning</b>:  Missing argument 2 for parse_message(), called in /home/corenominal/www/crunchbanglinux.org/forums/extern.php on line 131 and defined in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>784</b><br />
<br />
<b>Notice</b>:  Undefined variable: hide_smilies in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>820</b><br />
			<description><![CDATA[<div class="quotebox"><cite>Sector11 wrote:</cite><blockquote><div class="quotebox"><cite>crunchmic wrote:</cite><blockquote><p>Hi,</p><p>I had some time to tinker with conky a bit today and this is what I came up with. I like my desk clean and simple.</p><p>Mic</p></blockquote></div><p>Yes you do!&nbsp; Would you share the wallpaper.</p></blockquote></div><p>Sure, it was done by a friend of mine on deviantart.&nbsp; ;)</p><p>Get it here: <a href="http://tinyurl.com/3xn7or2">http://tinyurl.com/3xn7or2</a></p><p>Mic</p>]]></description>
			<author><![CDATA[dummy@example.com (crunchmic)]]></author>
			<pubDate>Sat, 28 Aug 2010 15:35:08 +0000</pubDate>
			<guid>http://crunchbanglinux.org/forums/post/83601/#p83601</guid>
		</item>
		<item>
			<title><![CDATA[Re: My Conky Config]]></title>
			<link>http://crunchbanglinux.org/forums/post/83423/#p83423</link>
<br />
<b>Warning</b>:  Missing argument 2 for parse_message(), called in /home/corenominal/www/crunchbanglinux.org/forums/extern.php on line 131 and defined in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>784</b><br />
<br />
<b>Notice</b>:  Undefined variable: hide_smilies in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>820</b><br />
			<description><![CDATA[<div class="quotebox"><cite>crunchmic wrote:</cite><blockquote><p>Hi,</p><p>I had some time to tinker with conky a bit today and this is what I came up with. I like my desk clean and simple.</p><p>Mic</p></blockquote></div><p>Yes you do!&nbsp; Would you share the wallpaper.</p>]]></description>
			<author><![CDATA[dummy@example.com (Sector11)]]></author>
			<pubDate>Fri, 27 Aug 2010 20:15:15 +0000</pubDate>
			<guid>http://crunchbanglinux.org/forums/post/83423/#p83423</guid>
		</item>
		<item>
			<title><![CDATA[Re: My Conky Config]]></title>
			<link>http://crunchbanglinux.org/forums/post/83415/#p83415</link>
<br />
<b>Warning</b>:  Missing argument 2 for parse_message(), called in /home/corenominal/www/crunchbanglinux.org/forums/extern.php on line 131 and defined in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>784</b><br />
<br />
<b>Notice</b>:  Undefined variable: hide_smilies in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>820</b><br />
			<description><![CDATA[<p>Hi,</p><p>I had some time to tinker with conky a bit today and this is what I came up with. I like my desk clean and simple.</p><p><span class="postimg"><img src="http://dl.dropbox.com/u/10650436/2010-08-27-210617_1920x1200_scrot.png" alt="http://dl.dropbox.com/u/10650436/2010-08-27-210617_1920x1200_scrot.png" /></span></p><div class="codebox"><pre><code>##############################################
#  Settings
##############################################
background yes
use_xft yes
xftfont HandelGotD:size=8
xftalpha 0.5
update_interval 4.0
total_run_times 0
own_window yes
own_window_type normal
own_window_transparent yes
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
double_buffer yes
minimum_size 1920
maximum_width 1920
draw_shades no
draw_outline no
draw_borders no
draw_graph_borders no
#default_color grey
default_color 707070
default_shade_color red
default_outline_color green
alignment bm
gap_x -60
gap_y -28
no_buffers yes
uppercase no
cpu_avg_samples 2
override_utf8_locale yes

TEXT

${voffset -8}${font openlogos:size=12} u${font} ${voffset -3} ${kernel} ${voffset 0}${font StyleBats:size=12} A${font} ${voffset -3}CPU 1: ${cpu cpu0}% ${cpubar cpu0 8,40 467abb 467abb} ${voffset 0}${font StyleBats:size=12} A${font} ${voffset -3}CPU 2: ${cpu cpu1}% ${cpubar cpu1 8,40} ${voffset 0}${font StyleBats:size=12} g${font} ${voffset -3}RAM: $memperc% ${membar 8,40} ${voffset 0}${font StyleBats:size=12} j${font} ${voffset -3}SWAP: $swapperc% ${swapbar 8,40} ${voffset -3}${font Pie charts for maps:size=12} 7${font} ${voffset -3}Root: ${fs_bar 8,40 /} ${voffset -3}${font Pie charts for maps:size=12} 7${font} ${voffset -3}DATA1: ${fs_bar 8,40 /media/DATA1} ${voffset -3}${font Pie charts for maps:size=12} 7${font} ${voffset -3}DATA2: ${fs_bar 8,40 /media/DATA2} ${voffset 0}${font StyleBats:size=12} Z${font} ${voffset -3}HDD 1: ${execi 10 hddtemp /dev/sda |cut -c28-31} ${voffset 0}${font StyleBats:size=12} Z${font} ${voffset -3}HDD 2: ${execi 10 hddtemp /dev/sdb |cut -c34-37} ${voffset -3}${font PizzaDude Bullets:size=12} O${font} Out: ${upspeed eth0} kb/s ${upspeedgraph eth0 8,40 467abb 467abb} ${voffset -3}${font PizzaDude Bullets:size=12} U${font} In: ${downspeed eth0} kb/s ${downspeedgraph eth0 8,40 467abb 467abb} ${voffset -3}${font PizzaDude Bullets:size=12} a${font} Local IP: ${addr eth0} ${voffset 0}${font StyleBats:size=12} q${font} ${voffset -3}Uptime: ${uptime}</code></pre></div><p>Mic</p>]]></description>
			<author><![CDATA[dummy@example.com (crunchmic)]]></author>
			<pubDate>Fri, 27 Aug 2010 19:48:21 +0000</pubDate>
			<guid>http://crunchbanglinux.org/forums/post/83415/#p83415</guid>
		</item>
		<item>
			<title><![CDATA[Re: My Conky Config]]></title>
			<link>http://crunchbanglinux.org/forums/post/83159/#p83159</link>
<br />
<b>Warning</b>:  Missing argument 2 for parse_message(), called in /home/corenominal/www/crunchbanglinux.org/forums/extern.php on line 131 and defined in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>784</b><br />
<br />
<b>Notice</b>:  Undefined variable: hide_smilies in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>820</b><br />
			<description><![CDATA[<div class="quotebox"><cite>mrpeachy wrote:</cite><blockquote><p>if you want more variety in your graphs (and dont mind tinkering a bit with scripts) then I have updated an earlier post<br /><a href="http://crunchbanglinux.org/forums/post/56135/#p56135">http://crunchbanglinux.org/forums/post/56135/#p56135</a></p></blockquote></div><p>Nice stuff mrpeachy, very nice indeed.</p>]]></description>
			<author><![CDATA[dummy@example.com (Sector11)]]></author>
			<pubDate>Thu, 26 Aug 2010 02:23:25 +0000</pubDate>
			<guid>http://crunchbanglinux.org/forums/post/83159/#p83159</guid>
		</item>
		<item>
			<title><![CDATA[Re: My Conky Config]]></title>
			<link>http://crunchbanglinux.org/forums/post/83158/#p83158</link>
<br />
<b>Warning</b>:  Missing argument 2 for parse_message(), called in /home/corenominal/www/crunchbanglinux.org/forums/extern.php on line 131 and defined in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>784</b><br />
<br />
<b>Notice</b>:  Undefined variable: hide_smilies in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>820</b><br />
			<description><![CDATA[<div class="quotebox"><cite>mobilediesel wrote:</cite><blockquote><p>Just though I should point out that the part of your code above can be simplified a bit:<br /></p><div class="codebox"><pre><code>${execpi 60 cal | sed -e &#039;1,2d&#039; -e &#039;/^ *$/d&#039; -e &quot;s/\&lt;$(date +%-d)\&gt;/\${color6}&amp;\${color4}/&quot;}</code></pre></div><p>No need to set a variable at the start, sed is only actually called once and fed several commands so it&#039;s shorter overall!</p><p>I just like optimizing code whenever possible. Learning to program on the TI 99/4A and the Commodore 64 probably had something to do with that.</p></blockquote></div><p>Now that is slick and short too!!&nbsp; But it wasn&#039;t my code, I found that a LONG time ago in another forum&nbsp; :)</p><div class="quotebox"><cite>mobilediesel wrote:</cite><blockquote><p>I&#039;m still running Xubuntu 8.04 with Openbox/Tint2 so hopefully that works like it should. I&#039;ll get #! on this computer eventually.</p></blockquote></div><p>You need some Castor Oil to get some stuff moving.&nbsp; :D</p>]]></description>
			<author><![CDATA[dummy@example.com (Sector11)]]></author>
			<pubDate>Thu, 26 Aug 2010 02:22:03 +0000</pubDate>
			<guid>http://crunchbanglinux.org/forums/post/83158/#p83158</guid>
		</item>
		<item>
			<title><![CDATA[Re: My Conky Config]]></title>
			<link>http://crunchbanglinux.org/forums/post/82695/#p82695</link>
<br />
<b>Warning</b>:  Missing argument 2 for parse_message(), called in /home/corenominal/www/crunchbanglinux.org/forums/extern.php on line 131 and defined in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>784</b><br />
<br />
<b>Notice</b>:  Undefined variable: hide_smilies in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>820</b><br />
			<description><![CDATA[<p>if you want more variety in your graphs (and dont mind tinkering a bit with scripts) then I have updated an earlier post<br /><a href="http://crunchbanglinux.org/forums/post/56135/#p56135">http://crunchbanglinux.org/forums/post/56135/#p56135</a></p><p>this will give you horizontal graphs that can go left to right or right to left<br />and vertical graphs that can go top to bottom or bottom to top<br />there are some other options too... the vertical graphs will probably get a little extra work to give you more options for these</p><p>this is the kind of thing you can get<br /><a href="http://imgur.com/uBDf0.png"><span class="postimg"><img src="http://imgur.com/uBDf0l.jpg" alt="http://imgur.com/uBDf0l.jpg" /></span></a><br />now with gradients!<br /><a href="http://imgur.com/V7vrX.png"><span class="postimg"><img src="http://imgur.com/V7vrXl.jpg" alt="http://imgur.com/V7vrXl.jpg" /></span></a><br />and fade effects!</p>]]></description>
			<author><![CDATA[dummy@example.com (mrpeachy)]]></author>
			<pubDate>Sun, 22 Aug 2010 02:35:55 +0000</pubDate>
			<guid>http://crunchbanglinux.org/forums/post/82695/#p82695</guid>
		</item>
		<item>
			<title><![CDATA[Re: My Conky Config]]></title>
			<link>http://crunchbanglinux.org/forums/post/82605/#p82605</link>
<br />
<b>Warning</b>:  Missing argument 2 for parse_message(), called in /home/corenominal/www/crunchbanglinux.org/forums/extern.php on line 131 and defined in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>784</b><br />
<br />
<b>Notice</b>:  Undefined variable: hide_smilies in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>820</b><br />
			<description><![CDATA[<div class="quotebox"><cite>Tunafish wrote:</cite><blockquote><p>Really nice, and i suppose you had a lot of fun doing it (typo: coLOLr4) :)</p><p>I&#039;m trying to do some sed/awk stuff lately, but it&#039;s a hell of a job sometimes...</p><p>Tuna</p></blockquote></div><p>I edited my post to correct that. :D</p><p>Messing with code is kinda fun but that typo was most likely due to being awake for almost 20 hours at the time. Possibly dyslexia, too. At least THAT typo was obvious enough to be fixed easily.</p>]]></description>
			<author><![CDATA[dummy@example.com (mobilediesel)]]></author>
			<pubDate>Sat, 21 Aug 2010 14:00:58 +0000</pubDate>
			<guid>http://crunchbanglinux.org/forums/post/82605/#p82605</guid>
		</item>
		<item>
			<title><![CDATA[Re: My Conky Config]]></title>
			<link>http://crunchbanglinux.org/forums/post/82592/#p82592</link>
<br />
<b>Warning</b>:  Missing argument 2 for parse_message(), called in /home/corenominal/www/crunchbanglinux.org/forums/extern.php on line 131 and defined in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>784</b><br />
<br />
<b>Notice</b>:  Undefined variable: hide_smilies in <b>/home/corenominal/www/crunchbanglinux.org/forums/include/parser.php</b> on line <b>820</b><br />
			<description><![CDATA[<div class="quotebox"><cite>mobilediesel wrote:</cite><blockquote><p>Just though I should point out that the part of your code above can be simplified a bit:<br /></p><div class="codebox"><pre><code>${execpi 60 cal | sed -e &#039;1,2d&#039; -e &#039;/^ *$/d&#039; -e &quot;s/\&lt;$(date +%-d)\&gt;/\${color6}&amp;\${cololr4}/&quot;}</code></pre></div><p>No need to set a variable at the start, sed is only actually called once and fed several commands so it&#039;s shorter overall!</p><p>I just like optimizing code whenever possible. Learning to program on the TI 99/4A and the Commodore 64 probably had something to do with that.</p></blockquote></div><p>Really nice, and i suppose you had a lot of fun doing it (typo: coLOLr4) :)</p><p>I&#039;m trying to do some sed/awk stuff lately, but it&#039;s a hell of a job sometimes...</p><p>Tuna</p>]]></description>
			<author><![CDATA[dummy@example.com (Tunafish)]]></author>
			<pubDate>Sat, 21 Aug 2010 09:13:55 +0000</pubDate>
			<guid>http://crunchbanglinux.org/forums/post/82592/#p82592</guid>
		</item>
	</channel>
</rss>
