
Conky Ubuntu Lucid Theme
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
This is the customization that I'm using with Conky and Gnome.
The resolution is for 1280 pixels wide screen, so I have included SVG file, so that each user, adapt it to your desktop.
It is made with Inkscape and using layers. If you like enjoy it, improving, translated and adapted to their needs.
(The Ubuntu logo design is a registered trademark of Canonical Ltd.)
djspider
10 years ago
Report
stribianese91
10 years ago
Report
Take0n
10 years ago
I really loved this one! I am actually using it right now and will be using it!!
Here is a simple python script to retrieve public IP. just save it as myip.py or something and change the code in conky to point to the right filename!
[color=#ff0000]#!/usr/bin/env python
import urllib2
myip = urllib2.urlopen("http://whatismyip.com/automation/n09230945.asp").read()
print myip[/color]
Report
temao
10 years ago
${goto 15}Uptime: ${goto 100}${uptime}${goto 512}Public IP: ${goto 612}${execi 10800 ~/.conkytheme/myip.py}
I'm a noobie so I think something's wrong :D
Thanks in advance.
Report
boobaloo
10 years ago
i.e.:
#!/usr/bin/env python
import urllib2
myip = urllib2.urlopen("http://whatismyip.com/automation/n09230945.asp").read()
print myip
Also - command for using should be
${execi 10800 python ~/.scripts/ip.py}
Cheers!
Report
boobaloo
10 years ago
${execi 10800 ~/.scripts/ip.py}
Report
sousuke
10 years ago
Can you please include it! thx
Report
tylerisfat
10 years ago
Report
edelmo
10 years ago
Report
sousuke
10 years ago
could you share an svg for 1920 wide resolutions?
it be great if you could send it via email.
thanks for the awesome work ^_^
Report
koleoptero
10 years ago
You use a script to fetch the public IP that you haven't included in the pack. If you could provide a link I'd be grateful.
Report
stevepearce
10 years ago
I'm now translating it to English and will make the changes available on my profile shortly.
Report
elementxyz
10 years ago
where is the conkrc file ???
Report
stevepearce
10 years ago
Report
nordstern
10 years ago
Report
SpecKtacle
10 years ago
Report
nicolaide
10 years ago
1. sudo apt-get install conky
2. extract the .conkytheme folder in my home folder
3. run conky -c /home/myuser/.conkytheme/conkyrc
Cheers!
Report