Advertisement
Guest User

Script.lua por LeandroNKZ

a guest
Dec 19th, 2011
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 9.25 KB | None | 0 0
  1. --[[
  2. Clock Rings by Linux Mint (2011) reEdited by despot77 E editado novamente por LeandroNKZ.
  3.  
  4. This script draws percentage meters as rings, and also draws clock hands if you want! It is fully customisable; all options are described in the script. This script is based off a combination of my clock.lua script and my rings.lua 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/clock_rings.lua
  10.     lua_draw_hook_pre clock_rings
  11.    
  12. Changelog:
  13. + v1.0 -- Original release (30.09.2009)
  14.    v1.1p -- Jpope edit londonali1010 (05.10.2009)
  15. *v 2011mint -- reEdit despot77 (18.02.2011)
  16. vBrWeather -- modificado por leandroNKZ
  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=0x0007CAF,
  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=115, y=150,
  39.         -- "radius" is the radius of the ring.
  40.         radius=35,
  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 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=0x007CAF,
  55.         fg_alpha=0.4,
  56.         x=115, y=150,
  57.         radius=45,
  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=0x007CAF,
  69.         fg_alpha=0.6,
  70.         x=115, y=150,
  71.         radius=55,
  72.         thickness=5,
  73.         start_angle=0,
  74.         end_angle=360
  75.     },
  76.     {
  77.         name='time',
  78.         arg='%m',
  79.         max=12,
  80.         bg_colour=0xffffff,
  81.         bg_alpha=0.1,
  82.         fg_colour=0x007CAF,
  83.         fg_alpha=0.8,
  84.         x=115, y=150,
  85.         radius=65,
  86.         thickness=5,
  87.         start_angle=180,
  88.         end_angle=360
  89.     },
  90.     {
  91.         name='time',
  92.         arg='%d',
  93.         max=31,
  94.         bg_colour=0xffffff,
  95.         bg_alpha=0.1,
  96.         fg_colour=0x007CAF,
  97.         fg_alpha=1,
  98.         x=115, y=150,
  99.         radius=75,
  100.         thickness=5,
  101.         start_angle=0,
  102.         end_angle=180
  103.     },
  104.     {
  105.         name='cpu',
  106.         arg='cpu0',
  107.         max=100,
  108.         bg_colour=0xffffff,
  109.         bg_alpha=0.2,
  110.         fg_colour=0x007CAF,
  111.         fg_alpha=0.8,
  112.         x=25, y=275,
  113.         radius=20,
  114.         thickness=5,
  115.         start_angle=-90,
  116.         end_angle=180
  117.     },
  118.     {
  119.         name='memperc',
  120.         arg='',
  121.         max=100,
  122.         bg_colour=0xffffff,
  123.         bg_alpha=0.2,
  124.         fg_colour=0x007CAF,
  125.         fg_alpha=0.8,
  126.         x=70, y=275,
  127.         radius=20,
  128.         thickness=5,
  129.         start_angle=-90,
  130.         end_angle=180
  131.     },
  132.     {
  133.         name='swapperc',
  134.         arg='',
  135.         max=100,
  136.         bg_colour=0xffffff,
  137.         bg_alpha=0.2,
  138.         fg_colour=0x007CAF,
  139.         fg_alpha=0.8,
  140.         x=115, y=275,
  141.         radius=20,
  142.         thickness=5,
  143.         start_angle=-90,
  144.         end_angle=180
  145.     },
  146.     {
  147.         name='fs_used_perc',
  148.         arg='/',
  149.         max=100,
  150.         bg_colour=0xffffff,
  151.         bg_alpha=0.2,
  152.         fg_colour=0x007CAF,
  153.         fg_alpha=0.8,
  154.         x=160, y=275,
  155.         radius=20,
  156.         thickness=5,
  157.         start_angle=-90,
  158.         end_angle=180
  159.     },
  160.         {
  161.         name='downspeedf',
  162.         arg='eth0',
  163.         max=100,
  164.         bg_colour=0xffffff,
  165.         bg_alpha=0.2,
  166.         fg_colour=0x007CAF,
  167.         fg_alpha=0.8,
  168.         x=205, y=275,
  169.         radius=20,
  170.         thickness=4,
  171.         start_angle=-90,
  172.         end_angle=180
  173.     },
  174.         {
  175.         name='upspeedf',
  176.         arg='eth0',
  177.         max=100,
  178.         bg_colour=0xffffff,
  179.         bg_alpha=0.2,
  180.         fg_colour=0x007CAF,
  181.         fg_alpha=0.8,
  182.         x=205, y=275,
  183.         radius=15,
  184.         thickness=4,
  185.         start_angle=-90,
  186.         end_angle=180
  187.     },
  188. }
  189.  
  190. -- Use these settings to define the origin and extent of your clock.
  191.  
  192. clock_r=65
  193.  
  194. -- "clock_x" and "clock_y" are the coordinates of the centre of the clock, in pixels, from the top left of the Conky window.
  195.  
  196. clock_x=115
  197. clock_y=150
  198.  
  199. show_seconds=true
  200.  
  201. require 'cairo'
  202.  
  203. function rgb_to_r_g_b(colour,alpha)
  204.     return ((colour / 0x10000) % 0x100) / 255., ((colour / 0x100) % 0x100) / 255., (colour % 0x100) / 255., alpha
  205. end
  206.  
  207. function draw_ring(cr,t,pt)
  208.     local w,h=conky_window.width,conky_window.height
  209.    
  210.     local xc,yc,ring_r,ring_w,sa,ea=pt['x'],pt['y'],pt['radius'],pt['thickness'],pt['start_angle'],pt['end_angle']
  211.     local bgc, bga, fgc, fga=pt['bg_colour'], pt['bg_alpha'], pt['fg_colour'], pt['fg_alpha']
  212.  
  213.     local angle_0=sa*(2*math.pi/360)-math.pi/2
  214.     local angle_f=ea*(2*math.pi/360)-math.pi/2
  215.     local t_arc=t*(angle_f-angle_0)
  216.  
  217.     -- Draw background ring
  218.  
  219.     cairo_arc(cr,xc,yc,ring_r,angle_0,angle_f)
  220.     cairo_set_source_rgba(cr,rgb_to_r_g_b(bgc,bga))
  221.     cairo_set_line_width(cr,ring_w)
  222.     cairo_stroke(cr)
  223.    
  224.     -- Draw indicator ring
  225.  
  226.     cairo_arc(cr,xc,yc,ring_r,angle_0,angle_0+t_arc)
  227.     cairo_set_source_rgba(cr,rgb_to_r_g_b(fgc,fga))
  228.     cairo_stroke(cr)        
  229. end
  230.  
  231. function draw_clock_hands(cr,xc,yc)
  232.     local secs,mins,hours,secs_arc,mins_arc,hours_arc
  233.     local xh,yh,xm,ym,xs,ys
  234.    
  235.     secs=os.date("%S")    
  236.     mins=os.date("%M")
  237.     hours=os.date("%I")
  238.        
  239.     secs_arc=(2*math.pi/60)*secs
  240.     mins_arc=(2*math.pi/60)*mins+secs_arc/60
  241.     hours_arc=(2*math.pi/12)*hours+mins_arc/12
  242.        
  243.     -- Draw hour hand
  244.    
  245.     xh=xc+0.7*clock_r*math.sin(hours_arc)
  246.     yh=yc-0.7*clock_r*math.cos(hours_arc)
  247.     cairo_move_to(cr,xc,yc)
  248.     cairo_line_to(cr,xh,yh)
  249.    
  250.     cairo_set_line_cap(cr,CAIRO_LINE_CAP_ROUND)
  251.     cairo_set_line_width(cr,5)
  252.     cairo_set_source_rgba(cr,1.0,1.0,1.0,1.0)
  253.     cairo_stroke(cr)
  254.    
  255.     -- Draw minute hand
  256.    
  257.     xm=xc+clock_r*math.sin(mins_arc)
  258.     ym=yc-clock_r*math.cos(mins_arc)
  259.     cairo_move_to(cr,xc,yc)
  260.     cairo_line_to(cr,xm,ym)
  261.    
  262.     cairo_set_line_width(cr,3)
  263.     cairo_stroke(cr)
  264.    
  265.     -- Draw seconds hand
  266.    
  267.     if show_seconds then
  268.         xs=xc+clock_r*math.sin(secs_arc)
  269.         ys=yc-clock_r*math.cos(secs_arc)
  270.         cairo_move_to(cr,xc,yc)
  271.         cairo_line_to(cr,xs,ys)
  272.    
  273.         cairo_set_line_width(cr,1)
  274.         cairo_stroke(cr)
  275.     end
  276. end
  277.  
  278. function conky_clock_rings()
  279.     local function setup_rings(cr,pt)
  280.         local str=''
  281.         local value=0
  282.        
  283.         str=string.format('${%s %s}',pt['name'],pt['arg'])
  284.         str=conky_parse(str)
  285.        
  286.         value=tonumber(str)
  287.         pct=value/pt['max']
  288.        
  289.         draw_ring(cr,pct,pt)
  290.     end
  291.    
  292.     -- Check that Conky has been running for at least 5s
  293.  
  294.     if conky_window==nil then return end
  295.     local cs=cairo_xlib_surface_create(conky_window.display,conky_window.drawable,conky_window.visual, conky_window.width,conky_window.height)
  296.    
  297.     local cr=cairo_create(cs)    
  298.    
  299.     local updates=conky_parse('${updates}')
  300.     update_num=tonumber(updates)
  301.    
  302.     if update_num>5 then
  303.         for i in pairs(settings_table) do
  304.             setup_rings(cr,settings_table[i])
  305.         end
  306.     end
  307.    
  308.     draw_clock_hands(cr,clock_x,clock_y)
  309. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement