|
![]() |
Overclock.net - Overclocking.net > Software, Programming and Coding > Operating Systems > Linux, Unix | |
Show Your Linux
|
||
| View Poll Results: What are your favorite Windows Managers? | |||
| KDE |
|
45 | 38.46% |
| GNOME |
|
75 | 64.10% |
| XFE |
|
1 | 0.85% |
| XFCE |
|
10 | 8.55% |
| Openbox |
|
1 | 0.85% |
| Blackbox |
|
3 | 2.56% |
| FluxBox |
|
11 | 9.40% |
| xfm |
|
1 | 0.85% |
| fvwm |
|
3 | 2.56% |
| WindowMaker |
|
1 | 0.85% |
| Multiple Choice Poll. Voters: 117. You may not vote on this poll | |||
![]() |
|
|
LinkBack (1) | Thread Tools |
|
|
#581 (permalink)
|
|||||||||||||
|
Commodore 64
|
|
|||||||||||||
|
|
|
|
|
#582 (permalink) | |||||||||||||
|
Intel Overclocker
|
Me three lol.
aformentioned wallpaper for any body that wants it, The only downside is that 1280 x 960 is the biggest they have it. There is some other nice stuff on there
__________________
|
|||||||||||||
|
|
|
|
#583 (permalink) | |||||||||||||
|
Linux Lobbyist
|
My latest, I haven't had much time to do much. I have been stock for a long time now but here it is.
![]()
__________________
|
|||||||||||||
|
|
|
|
#584 (permalink) | |||||||||||||
|
Linux Lobbyist
|
![]()
|
|||||||||||||
|
|
|
|
#585 (permalink) | |||||||||||||
|
Commodore 64
|
|
|||||||||||||
|
|
|
|
|
#586 (permalink) | |||||||||||||
|
Intel Overclocker
|
Nice but why Amarok with Gnome? Conky is cool any chance i could get the rc? Is there any special reason you are using that old kernel?
__________________
|
|||||||||||||
|
|
|
|
#587 (permalink) | ||||||||||||||
|
Commodore 64
|
Quote:
ubuntu always uses generic kernels, that's the kernel that installed with gutsy. conkyrc background yes own_window yes own_window_type override own_window_transparent yes own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager double_buffer yes use_spacer yes use_xft yes xftfont Comic Sans MS:size=10 xftalpha 0.9 update_interval 1 total_run_times 0 draw_shades no draw_outline no draw_borders no uppercase no stippled_borders 3 border_margin 9 border_width 10 default_color white maximum size 400 minimum_size 200 own_window_colour brown alignment bottom_right gap_x 10 gap_y 35 TEXT ${alignr}${color ffffff}${time %I:%M}${time %p} ${time %a, }${time %e %B %G} ${color ffffff}$nodename ${hr 1} ${Tab 20}${color ffffff}$sysname $kernel ${color ffffff}CPU: Dual Core AMD Opteron 165 ${hr 1} ${Tab 20}${color ffffff}${freq_g}GHz ${Tab 20}${color ffffff}${cpu}% ${Tab 20}${cpugraph 15, 150 e4ff00 f38503} ${color ffffff}Memory: 2GB Crucial Ballistix Tracer ${hr 1} ${Tab 20}${color ffffff}250MHz ${Tab 20}$memperc% ${Tab 20}${memgraph 15,150 e4ff00 f38503} ${color ffffff}Network: eth1 ${hr 1} ${Tab 20}${color ffffff}Down ${downspeed eth0}kb/s ${Tab 20}${color ffffff}${downspeedgraph eth0 15,150 e4ff00 f38503} ${Tab 20}${color ffffff}Up ${upspeed eth0}kb/s ${Tab 20}${color ffffff}${upspeedgraph eth0 15,150 e4ff00 f38503} ${color ffffff}Video: ${execi 30 nvclock -i | grep 'Card:' | cut -c9-27} ${hr 1} ${tab 20}${color ffffff}GPU:${tab 4}${execi 30 nvclock -i | grep 'Architecture:' | cut -c16-22}${Tab 20}${execi 30 nvclock -i | grep 'GPU clock:' | cut -c13-23} ${tab 20}${color ffffff}Mem:${Tab 4}${execi 30 nvclock -i | grep 'Amount:' | cut -c10-15} ${execi 30 nvclock -i | grep 'Type:' | cut -c16-18}${Tab 20}${execi 30 nvclock -i | grep 'Clock:' | cut -c10-21} ${color ffffff}Temperatures ${hr 1} ${Tab 20}${color ffffff}CPU:${Tab 10}${execi 90 sensors | grep "CPU Temp:" | cut -c12-16 ;}C ${Tab 20}${color ffffff}GPU:${Tab 10}${execi 30 nvclock -T | grep temperature | cut -c21-23} ${color ffffff}Weather ${hr 1} ${color ffffff}${Tab 20}${execi 1800 /home/john/.conky_settings/weather.sh 44095} weather.sh #!/bin/sh # # Grab weather data from weather.com and format it according to the given XSLT # Script written by boojit # Modified by Hellf[i]re # The orignal script and xslt can be downloaded from http://pondol.com/weather.tar.gz # Usage: # ${execi 1800 /path/to/weather/weather.sh location} # Usage Example: # ${execi 1800 /home/user/weather/weather.sh 03833} # your Location ID: use http://xoap.weather.com/search/search?where=[yourcity] to find it # U.S. users can just use their zip code; doubt that works for anyone else though (YMMV) LOCID=$1 # s=standard units, m=metric units UNITS=s # where this script and the XSLT lives RUNDIR=/home/john/.conky_settings # there's probably other stuff besides CURL that will work for this, but i haven't # tried any others. # you can get curl at http://curl.haxx.se/ CURLCMD=/usr/bin/curl # get it at http://xmlsoft.org/XSLT/ XSLTCMD=/usr/bin/xsltproc # you probably don't need to modify anything below this point.... # CURL url. Use cc=* for current forecast or dayf=10 to get a multi-day forecast CURLURL="http://xoap.weather.com/weather/local/$LOCID?cc=*&unit=$UNITS&dayf=2" # The XSLT to use when translating the response from weather.com # You can modify this xslt to your liking XSLT=$RUNDIR/weather.xslt #filter (if you want to convert stuff to lower-case or upper case or something) #FILTER="|gawk '{print(tolower(\$0));}'" ##### eval "$CURLCMD \"$CURLURL\" 2>/dev/null| $XSLTCMD $XSLT - $FILTER" weather.xslt <!-- This XSLT is used to translate an XML response from the weather.com XML API. You can format this file to your liking. Two things you may feel like doing: 1) Modify the layout of the fields or static text already defined 2) Add other fields from the XML response file that aren't referenced in this XSLT. You can grab a full list by just doing a: wget "http://xoap.weather.com/weather/local/$LOCID?cc=*&unit=$UNITS" (change $LOCID and $UNITS to suit your needs) File modified by matthew --> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" > <xsl utput method="text" disable-output-escaping="yes"/><xsl:template match="weather"> <xsl:apply-templates select="cc"/> <xsl:apply-templates select="dayf/day[@d='1']"/> </xsl:template> <xsl:template match="cc"> <xsl:value-of select="obst"/> <xsl:text> </xsl:text> <xsl:text> Temperature: </xsl:text><xsl:value-of select="tmp"/><xsl:value-of select="/weather/head/ut"/> <xsl:if test="tmp != flik"> <xsl:text> Feels Like: </xsl:text><xsl:value-of select="flik"/><xsl:value-of select="/weather/head/ut"/> </xsl:if> <xsl:text> Conditions: </xsl:text><xsl:value-of select="t"/> <xsl:text> Wind: </xsl:text> <xsl:choose> <xsl:when test="wind/s = 'calm'"><xsl:text>0</xsl:text></xsl:when> <xsl therwise><xsl:value-of select="wind/s"/></xsl therwise></xsl:choose> <xsl:value-of select="/weather/head/us"/> <xsl:choose> <xsl:when test="wind/s = 'calm'"><xsl:text>(0mph)</xsl:text></xsl:when> <xsl therwise><xsl:text> </xsl:text></xsl therwise></xsl:choose> <xsl:text> (</xsl:text><xsl:value-of select="wind/t"/><xsl:text>)</xsl:text> <xsl:text> Humidity: </xsl:text><xsl:value-of select="hmid"/><xsl:text> % Barometer: </xsl:text><xsl:value-of select="bar/d"/> </xsl:template> <xsl:template match="dayf/day[@d='1']"> <xsl:text> Tomorrow: </xsl:text><xsl:value-of select="low"/><xsl:value-of select="/weather/head/ut"/> <xsl:text> to </xsl:text><xsl:value-of select="hi"/><xsl:value-of select="/weather/head/ut"/> <xsl:text>, </xsl:text><xsl:value-of select="part[@p='d']/t"/> <xsl:text> </xsl:text><xsl:value-of select="/weather/swa/a/t"/> <xsl:text> </xsl:text> </xsl:template> </xsl:stylesheet>
|
||||||||||||||
|
|
|
|
|
#588 (permalink) | ||||||||||||||
|
Intel Overclocker
|
Quote:
Thanks for the conkyrc. On Arch the current kernel is 2.6.23.8, Why does Ubuntu use such an old one do you know? It doesn't let me post a reply with your conkyrc in my post because of the xml lol
__________________
Last edited by biatchi : 11-21-07 at 02:07 AM. |
||||||||||||||
|
|
|
|
#589 (permalink) | |||||||||||||
|
Commodore 64
|
something about how smp is built in
|
|||||||||||||
|
|
|
|
|
#590 (permalink) | |||||||||||||
|
Intel Overclocker
|
Interesting, i might just look it up
__________________
|
|||||||||||||
|
|