-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathconky_tpl
95 lines (76 loc) · 1.95 KB
/
conky_tpl
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
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
temperature_unit = 'celsius',
-- With class override, gets images to display properly (black bg)
own_window_argb_visual = true,
own_window_argb_value = 0,
-- Window specifications #
own_window_class = override,
own_window = true,
-- XFCE4 = desktop, sinon 'normal'
own_window_type = 'desktop',
own_window_transparent = true,
-- XFCE4 - undecorate not working
own_window_hints = 'sticky,skip_taskbar,skip_pager,below',
border_inner_margin = 0,
border_outer_margin = 0,
minimum_width = 520,
minimum_height = 600,
maximum_width = 520,
alignment = 'top_right',
gap_x = 20,
gap_y = 112,
-- Graphics settings #
draw_shades = false,
draw_outline = false,
draw_borders = false,
draw_graph_borders = false,
-- useless
default_shade_color = 'red',
default_outline_color = 'green',
-- Text settings #
use_xft = true,
override_utf8_locale = true,
--{{ FONTTEXT }}
xftalpha = 0.9,
uppercase = false,
-- TEXT color
default_color = '#333333',
--{{ COLOR0 }}
--{{ COLOR1 }}
lua_load = '~/conky/conky-grapes/rings-v2_gen.lua',
lua_draw_hook_pre = 'conky_main',
diskio_avg_samples = 2
};
conky.text = [[
## CPU ###################
#{{ TEMPERATURE }}
#{{ CPU }}
${goto 50}${color1}${top name 2}${alignr 306}${top cpu 2}%
${goto 50}${color1}${top name 3}${alignr 306}${top cpu 3}%
${font Michroma:size=10}${color0}${goto 80}${voffset 4}CPU
## DISKIO ################
#{{ DISKIO }}
## MEMORY ################
#{{ MEMORY }}
## FILESYSTEMS #################
#{{ FILESYSTEM }}
## INTERNET ################
${font Michroma:size=10}${color0}${voffset 26}${goto 324}INTERNET INFO
#{{ NETWORK }}
## TIME ########################
#{{ TIME }}
## BATTERY #####################
#{{ BATTERY }}
## OS
#{{ OS }}
]];