-
Notifications
You must be signed in to change notification settings - Fork 0
/
rings
62 lines (46 loc) · 1.47 KB
/
rings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
conky.config = {
-- -- Conky settings -- #
background = false,
update_interval = 1,
cpu_avg_samples = 2,
net_avg_samples = 2,
override_utf8_locale = true,
double_buffer = true,
no_buffers = true,
text_buffer_size = 2048,
imlib_cache_size = 0,
-- -- Window specifications -- #
own_window = true,
own_window_type = 'desktop',
own_window_transparent = true,
own_window_hints = 'undecorate,sticky,skip_taskbar,skip_pager,below',
border_inner_margin = 0,
border_outer_margin = 0,
minimum_width = 920, minimum_height = 300,
maximum_width = 1024,
alignment = 'top_left',
gap_x = 0,
gap_y = 79,
-- -- Graphics settings -- #
draw_shades = false,
draw_outline = false,
draw_borders = false,
draw_graph_borders = false,
-- -- Text settings -- #
use_xft = true,
font = 'Santana:size=18',
xftalpha = 0.8,
uppercase = false,
default_color = '#FFFFFF',
-- -- Lua Load -- #
lua_load = './clock_rings.lua',
lua_draw_hook_pre = 'clock_rings',
};
conky.text = [[
${font Santana:size=12} Root ${fs_used /}/${fs_size /} Home ${fs_used /home}/${fs_size /home}$font
${voffset 105}${goto 123}${font Santana:size=24}${time %H:%M}${voffset -10}${font Santana:size=10}${font}
${voffset -28}${goto 268}${hr 2}
${voffset -70}${goto 278}${cpugraph 50,285 d5dcde ffffff} #${voffset -18} ${alignr} ${execi 60 ~/.Conky/gmailnotify.sh}
${voffset 16}${goto 285}${time %A, %d %B %Y}
${font Santana:size=14}${voffset -120}${goto 300}BATTERY ${battery BAT0}
]];