
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
PLEASE NOTE: This page is no longer maintained. Please see my DeviantArt page for the maintained version: http://londonali1010.deviantart.com/art/quot-Rings-quot-Meters-for-Conky-141961783
This is a Lua script written with Cairo bindings to display ring meters, just like the CircleMeter adesklet by kurcze. You can customise the size, thickness, placement, colour and transparency of the rings, and rings are available for cpu% (total or you can choose which core), mem%, free space on any partition, and battery percent.
Instructions for customising the rings, and for how to call the script in Conky, are in the script itself.
Please note that Cairo bindings for Lua are only available in Conky 1.7.2.
If you use this script, please leave me a note saying how you've used it!
*** NOTE: I'm having difficulty uploading a screenie of the latest ring script. Please find it here: http://picasaweb.google.com/londonali1010/Screenshots#5389926810218350802 ***
11 years ago
+ v1.2 -- Added option for the ending angle of the rings (07.10.2009)
+ v1.1 -- Added options for the starting angle of the rings, and added the "max" variable, to allow for variables that output a numerical value rather than a percentage (29.09.2009)
+ v1.0 -- Original release (28.09.2009)
11 years ago
+ v1.2 -- Added option for the ending angle of the rings (07.10.2009)
+ v1.1 -- Added options for the starting angle of the rings, and added the "max" variable, to allow for variables that output a numerical value rather than a percentage (29.09.2009)
+ v1.0 -- Original release (28.09.2009)
nhianho
9 years ago
Report
DoctorDrive
10 years ago
It looks like this http://docd.zx6.ru/ubuntu/conky.png
And the config is here
(put the lua file to ~/scripts/ filder)
http://docd.zx6.ru/ubuntu/conky.zip
Report
cjovergaard
11 years ago
But I'm kinda new to this conky thing, so can you maybe give me a not so detailed instruction in how to install this script?
Thanks!
Report
arpbook
11 years ago
hope you like, hope you don't mind... i credit your work and CH! too :)
keep up the good job,
a big fan
arp
Report
ubuntico
11 years ago
Specifically I dont know what exactly is the menaning of:
"conkyrc_rings & conkyrc_netrings goes where you want, don't forget to adjust path and username before using"
Best regards
Report
arpbook
11 years ago
the meaning of "..." is: conkyrc's calls lua scripts by their path (/home/arp/scripts/rings.lua in my case), you have to edit all scripts to adjust path of lua scripts in conkyrc(last line before TEXT) and replace the path by yours.
hope i'm clear, if not,mail me on my own page.... here is the londonali1010's place ;) and thanks again for your support :)
Report
ubuntico
11 years ago
How do you do to make to work all of them simultaneously??
Thanks in advance
Report
arpbook
11 years ago
[code]#!/bin/sh
#to start/stop zen rings
if pidof conky | grep [0-9] > /dev/null
then
exec killall conky
else
sleep 4s
conky -c ~/scripts/conkyrc_zen1 &
conky -c ~/scripts/conkyrc_zen2 &
conky -c ~/scripts/conkyrc_zen3 &
exit
fi[/code]
you can put it in your autostart or bind it to a speciakey :)
Report
ubuntico
11 years ago
Report
arpbook
11 years ago
all credits to londonali1010 for the script & crunchbang linux forum for conky inspiration ;)
Report
avantix
11 years ago
Report
ubuntico
11 years ago
Report
londonali1010
11 years ago
If you still have trouble, let me know :)
Report
ubuntico
11 years ago
Report