-- time and date ------------------------------------------ time and date
local hour = conky_parse('${time %H}');
local minute = conky_parse('${time %M}');
--local part = conky_parse('${time %p}');
local day = conky_parse('${time %d}');
local month = conky_parse('${time %B}');
local year = conky_parse('${time %G}');
-- time Feena Casual
set_color(1,1);
cairo_select_font_face(cr, "Knife Fight Ballet", 0,0.9);
cairo_set_font_size(cr,height/6);
--text = hour..":"..minute..part;
text = hour..":"..minute;
cairo_text_extents(cr,text,extents)
cairo_move_to(cr, centerx+10 - extents.width/2, height/6);
cairo_show_text(cr, text);
local time_height = height/5;
-- date
set_color(1,0.6);
item_font_size = height/12;
cairo_select_font_face(cr, "This Night",0,0);
cairo_set_font_size(cr, item_font_size)
text = day.. " "..month.." "..year;
cairo_text_extents(cr,text,extents)
cairo_move_to(cr, centerx +15 - extents.width/2, time_height + height/30);
cairo_show_text(cr, text);