Sei sulla pagina 1di 4

--[[

Ring Meters by londonali1010 (2009)


This script draws percentage meters as rings. It is fully customisable; all opti
ons are described in the script.
IMPORTANT: if you are using the 'cpu' function, it will cause a segmentation fau
lt if it tries to draw a ring straight away. The if statement on line 145 uses a
delay to make sure that this doesn't happen. It calculates the length of the de
lay by the number of updates since Conky started. Generally, a value of 5s is lo
ng enough, so if you update Conky every 1s, use update_num>5 in that if statemen
t (the default). If you only update Conky every 2s, you should change it to upda
te_num>3; conversely if you update Conky every 0.5s, you should use update_num>1
0. ALSO, if you change your Conky, is it best to use "killall conky; conky" to u
pdate it, otherwise the update_num will not be reset and you will get an error.
To call this script in Conky, use the following (assuming that you save this scr
ipt to ~/scripts/rings.lua):
lua_load ~/scripts/rings.lua
lua_draw_hook_pre ring_stats
Changelog:
+ 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 pe
rcentage (29.09.2009)
+ v1.0 -- Original release (28.09.2009)
]]
settings_table = {
{
-- Edit this table to customise your rings.
-- You can create more rings simply by adding more elements to settings_
table.
-- "name" is the type of stat to display; you can choose from 'cpu', 'me
mperc', 'fs_used_perc', 'battery_used_perc'.
name='cpu',
-- "arg" is the argument to the stat type, e.g. if in Conky you would wr
ite ${cpu cpu0}, 'cpu0' would be the argument. If you would not use an argument
in the Conky variable, use ''.
arg='cpu0',
-- "max" is the maximum value of the ring. If the Conky variable outputs
a percentage, use 100.
max=100,
-- "bg_colour" is the colour of the base ring.
bg_colour=0xCDCDC1,
-- "bg_alpha" is the alpha value of the base ring.
bg_alpha=0.5,
-- "fg_colour" is the colour of the indicator part of the ring.
fg_colour=0xFF0000,
-- "fg_alpha" is the alpha value of the indicator part of the ring.
fg_alpha=0.8,
-- "x" and "y" are the x and y coordinates of the centre of the ring, re
lative to the top left corner of the Conky window.
x=120, y=120,
-- "radius" is the radius of the ring.
radius=81,
-- "thickness" is the thickness of the ring, centred around the radius.
thickness=10,
-- "angle" is the starting angle of the ring, in degrees, clockwise from
top. Value can be either positive or negative.
angle=90
},
{
name='cpu',
arg='cpu1',
max=100,
bg_colour=0xCDCDC1,
bg_alpha=0.5,
fg_colour=0xFF0000,
fg_alpha=0.5,
x=100, y=120,
radius=75,
thickness=8,
angle=90
},
{
name='memperc',
arg='',
max=100,
bg_colour=0xffffff,
bg_alpha=0.2,
fg_colour=0x1E90FF,
fg_alpha=0.5,
x=100, y=120,
radius=82,
thickness=5,
angle=90
},
{
name='fs_used_perc',
arg='/',
max=100,
bg_colour=0xffffff,
bg_alpha=0.1,
fg_colour=0x00FF00,
fg_alpha=0.5,
x=100, y=120,
radius=55,
thickness=8,
angle=90
},
{
name='battery_percent',
arg='BAT0',
max=100,
bg_colour=0xffffff,
bg_alpha=0.2,
fg_colour=0xFFFF00,
fg_alpha=1,
x=100, y=120,
radius=65,
thickness=8,
angle=90
},
{
name='time',
arg='+%S',
max=60,
bg_colour=0xE3E3E3,
bg_alpha=0.1,
fg_colour=0xFFFF00,
fg_alpha=0.7,
x=924, y=120,
radius=70,
thickness=4,
angle=0
},
{
name='time',
arg='+%M',
max=60,
bg_colour=0xE3E3E3,
bg_alpha=0.1,
fg_colour=0x00CD00,
fg_alpha=0.7,
x=924, y=120,
radius=64,
thickness=7,
angle=0
},
{
name='time',
arg='+%H',
max=24,
bg_colour=0xE3E3E3,
bg_alpha=0.1,
fg_colour=0xffffff,
fg_alpha=0.7,
x=924, y=120,
radius=52,
thickness=14,
angle=0
},
}
require 'cairo'
function rgb_to_r_g_b(colour,alpha)
return ((colour / 0x10000) % 0x100) / 255., ((colour / 0x100) % 0x100) / 255
., (colour % 0x100) / 255., alpha
end
function draw_ring(t, pt)
if conky_window==nil then return end
local w,h=conky_window.width,conky_window.height
local cs=cairo_xlib_surface_create(conky_window.display,conky_window.drawabl
e,conky_window.visual,w,h)
cr=cairo_create(cs)
local xc,yc,ring_r,ring_w,angle=pt['x'],pt['y'],pt['radius'],pt['thickness']
,pt['angle']
local bgc, bga, fgc, fga=pt['bg_colour'], pt['bg_alpha'], pt['fg_colour'], p
t['fg_alpha']
local angle_0=angle*(2*math.pi/360)-math.pi/2
local t_arc=t*2*math.pi
-- Draw background ring
cairo_arc(cr,xc,yc,ring_r,0,2*math.pi)
cairo_set_source_rgba(cr,rgb_to_r_g_b(bgc,bga))
cairo_set_line_width(cr,ring_w)
cairo_stroke(cr)
-- Draw indicator ring
cairo_arc(cr,xc,yc,ring_r,angle_0,angle_0+t_arc)
cairo_set_source_rgba(cr,rgb_to_r_g_b(fgc,fga))
cairo_stroke(cr)
cairo_destroy(cr)
cr = nil
end
function conky_cairo_cleanup()
cairo_surface_destroy(cs)
cs = nil
end
function conky_ring_stats()
local function setup_rings(pt)
local str=''
local value=0
str=string.format('${%s %s}',pt['name'],pt['arg'])
str=conky_parse(str)
value=tonumber(str)
pct=value/pt['max']
draw_ring(pct,pt)
end
-- Check that Conky has been running for at least 5s
local updates=conky_parse('${updates}')
update_num=tonumber(updates)
if update_num>5 then
for i in pairs(settings_table) do
setup_rings(settings_table[i])
end
end
end

Potrebbero piacerti anche