read some more battery data using new bme.c file but not stable, crashes after 23...
[monky] / data / testCairo.lua
1 --[[
2 Ring Meters by londonali1010 (2009)
3
4 This script draws percentage meters as rings. It is fully customisable; all options are described in the script.
5
6 IMPORTANT: if you are using the 'cpu' function, it will cause a segmentation fault 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 delay by the number of updates since Conky started. Generally, a value of 5s is long enough, so if you update Conky every 1s, use update_num > 5 in that if statement (the default). If you only update Conky every 2s, you should change it to update_num > 3; conversely if you update Conky every 0.5s, you should use update_num > 10. ALSO, if you change your Conky, is it best to use "killall conky; conky" to update it, otherwise the update_num will not be reset and you will get an error.
7
8 To call this script in Conky, use the following (assuming that you save this script to ~/scripts/rings.lua):
9     lua_load ~/scripts/rings-v1.2.1.lua
10     lua_draw_hook_pre ring_stats
11
12 Changelog:
13 + v1.2.1 -- Fixed minor bug that caused script to crash if conky_parse() returns a nil value (20.10.2009)
14 + v1.2 -- Added option for the ending angle of the rings (07.10.2009)
15 + 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)
16 + v1.0 -- Original release (28.09.2009)
17 ]]
18
19 settings_table = {
20     {
21         -- Edit this table to customise your rings.
22         -- You can create more rings simply by adding more elements to settings_table.
23         -- "name" is the type of stat to display; you can choose from 'cpu', 'memperc', 'fs_used_perc', 'battery_used_perc'.
24         name='time',
25         -- "arg" is the argument to the stat type, e.g. if in Conky you would write ${cpu cpu0}, 'cpu0' would be the argument. If you would not use an argument in the Conky variable, use ''.
26         arg='%I.%M',
27         -- "max" is the maximum value of the ring. If the Conky variable outputs a percentage, use 100.
28         max=12,
29         -- "bg_colour" is the colour of the base ring.
30         bg_colour=0xffffff,
31         -- "bg_alpha" is the alpha value of the base ring.
32         bg_alpha=0.1,
33         -- "fg_colour" is the colour of the indicator part of the ring.
34         fg_colour=0xffffff,
35         -- "fg_alpha" is the alpha value of the indicator part of the ring.
36         fg_alpha=0.2,
37         -- "x" and "y" are the x and y coordinates of the centre of the ring, relative to the top left corner of the Conky window.
38         x=165, y=170,
39         -- "radius" is the radius of the ring.
40         radius=50,
41         -- "thickness" is the thickness of the ring, centred around the radius.
42         thickness=5,
43         -- "start_angle" is the starting angle of the ring, in degrees, clockwise from top. Value can be either positive or negative.
44         start_angle=0,
45         -- "end_angle" is the ending angle of the ring, in degrees, clockwise from top. Value can be either positive or negative, but must be larger (e.g. more clockwise) than start_angle.
46         end_angle=360
47     },
48     {
49         name='time',
50         arg='%M.%S',
51         max=60,
52         bg_colour=0xffffff,
53         bg_alpha=0.1,
54         fg_colour=0xffffff,
55         fg_alpha=0.4,
56         x=165, y=170,
57         radius=56,
58         thickness=5,
59         start_angle=0,
60         end_angle=360
61     },
62     {
63         name='time',
64         arg='%S',
65         max=60,
66         bg_colour=0xffffff,
67         bg_alpha=0.1,
68         fg_colour=0xffffff,
69         fg_alpha=0.6,
70         x=165, y=170,
71         radius=62,
72         thickness=5,
73         start_angle=0,
74         end_angle=360
75     },
76     {
77         name='cpu',
78         arg='cpu0',
79         max=100,
80         bg_colour=0xffffff,
81         bg_alpha=0.1,
82         fg_colour=0xffffff,
83         fg_alpha=0.4,
84         x=165, y=170,
85         radius=84.5,
86         thickness=8,
87         start_angle=60,
88         end_angle=120
89     },
90     {
91         name='battery_percent',
92         arg='BAT1',
93         max=100,
94         bg_colour=0xffffff,
95         bg_alpha=0.1,
96         fg_colour=0xffffff,
97         fg_alpha=0.6,
98         x=165, y=170,
99         radius=72,
100         thickness=11,
101         start_angle=122,
102         end_angle=210
103     },
104     {
105         name='memperc',
106         arg='',
107         max=100,
108         bg_colour=0xffffff,
109         bg_alpha=0.1,
110         fg_colour=0xffffff,
111         fg_alpha=0.8,
112         x=165, y=170,
113         radius=83.5,
114         thickness=8,
115         start_angle=122,
116         end_angle=210
117     },
118     {
119         name='time',
120         arg='%d',
121         max=31,
122         bg_colour=0xffffff,
123         bg_alpha=0.1,
124         fg_colour=0xffffff,
125         fg_alpha=0.8,
126         x=165, y=170,
127         radius=70,
128         thickness=5,
129         start_angle=212,
130         end_angle=360
131     },
132     {
133         name='time',
134         arg='%m',
135         max=12,
136         bg_colour=0xffffff,
137         bg_alpha=0.1,
138         fg_colour=0xffffff,
139         fg_alpha=0.8,
140         x=165, y=170,
141         radius=76,
142         thickness=5,
143         start_angle=212,
144         end_angle=360
145     },
146     {
147         name='fs_used_perc',
148         arg='/',
149         max=150,
150         bg_colour=0xffffff,
151         bg_alpha=0.2,
152         fg_colour=0xffffff,
153         fg_alpha=0.3,
154         x=165, y=170,
155         radius=108.5,
156         thickness=3,
157         start_angle=-120,
158         end_angle=240
159     },
160     {
161         name='fs_used_perc',
162         arg='/',
163         max=100,
164         bg_colour=0xffffff,
165         bg_alpha=0.2,
166         fg_colour=0xffffff,
167         fg_alpha=0.3,
168         x=165, y=170,
169         radius=135,
170         thickness=50,
171         start_angle=-120,
172         end_angle=120
173     },
174 }
175
176 require 'cairo'
177
178 function rgb_to_r_g_b(colour,alpha)
179     return ((colour / 0x10000) % 0x100) / 255., ((colour / 0x100) % 0x100) / 255., (colour % 0x100) / 255., alpha
180 end
181
182 function draw_ring(cr,t,pt)
183     local w,h=conky_window.width,conky_window.height
184
185     local xc,yc,ring_r,ring_w,sa,ea=pt['x'],pt['y'],pt['radius'],pt['thickness'],pt['start_angle'],pt['end_angle']
186     local bgc, bga, fgc, fga=pt['bg_colour'], pt['bg_alpha'], pt['fg_colour'], pt['fg_alpha']
187
188     local angle_0=sa*(2*math.pi/360)-math.pi/2
189     local angle_f=ea*(2*math.pi/360)-math.pi/2
190     local t_arc=t*(angle_f-angle_0)
191
192     -- Draw background ring
193
194     cairo_arc(cr,xc,yc,ring_r,angle_0,angle_f)
195     cairo_set_source_rgba(cr,rgb_to_r_g_b(bgc,bga))
196     cairo_set_line_width(cr,ring_w)
197     cairo_stroke(cr)
198
199     -- Draw indicator ring
200
201     cairo_arc(cr,xc,yc,ring_r,angle_0,angle_0+t_arc)
202     cairo_set_source_rgba(cr,rgb_to_r_g_b(fgc,fga))
203     cairo_stroke(cr)        
204 end
205
206 function conky_ring_stats()
207     local function setup_rings(cr,pt)
208         local str=''
209         local value=0
210
211         str=string.format('${%s %s}',pt['name'],pt['arg'])
212         str=conky_parse(str)
213
214         value=tonumber(str)
215         if value == nil then value = 0 end
216         pct=value/pt['max']
217
218         draw_ring(cr,pct,pt)
219     end
220
221     if conky_window==nil then return end
222     local cs=cairo_xlib_surface_create(conky_window.display,conky_window.drawable,conky_window.visual, conky_window.width,conky_window.height)
223
224     local cr=cairo_create(cs)    
225
226     local updates=conky_parse('${updates}')
227     update_num=tonumber(updates)
228
229     if update_num>5 then
230         for i in pairs(settings_table) do
231             setup_rings(cr,settings_table[i])
232         end
233     end
234         cairo_surface_destroy(cs)
235     cairo_destroy(cr)
236 end