-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBetterProcessPanel
More file actions
87 lines (71 loc) · 2.48 KB
/
Copy pathBetterProcessPanel
File metadata and controls
87 lines (71 loc) · 2.48 KB
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
conky.config = {
-- **********************************************************************
-- "CPU Panel (8-core)" theme for Conky by Tony George (teejee2008@gmail.com)
-- Webpage: http://teejeetech.blogspot.in/
-- **********************************************************************
background = true,
double_buffer = true,
alignment = 'top_right',
border_width = 1,
cpu_avg_samples = 2,
default_color = 'white',
default_outline_color = 'white',
default_shade_color = 'white',
draw_borders = false,
draw_graph_borders = true,
draw_outline = false,
draw_shades = false,
gap_x = 50,
gap_y = 50,
net_avg_samples = 2,
no_buffers = true,
out_to_console = false,
out_to_stderr = false,
extra_newline = false,
own_window = true,
own_window_type = 'normal',
own_window_transparent = true,
own_window_colour = '000000',
own_window_argb_visual = false,
own_window_argb_value = 0,
own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
minimum_width = 170, minimum_height = 0,
stippled_borders = 0,
update_interval = 2.0,
uppercase = false,
use_spacer = 'none',
show_graph_scale = false,
show_graph_range = false,
use_xft = true,
xftalpha = 0.1,
font = 'SF Pro:size=15',
color0 = 'white',
color1 = '#EAEAEA',
color2 = '#FFA300',
color3 = 'grey',
};
conky.text = [[
${if_up tun0}VPN Status:${alignr}Active${color}${else}VPN Status:${color}${font}${alignr}Inactive${color}${endif}
${color0}CPU ${color0}${alignr}${cpu cpu0}%
${cpubar cpu0 5,}
${top name 1} $alignr ${top cpu 1}%
${top name 2} $alignr ${top cpu 2}%
${top name 3} $alignr ${top cpu 3}%
${top name 4} $alignr ${top cpu 4}%
${top name 5} $alignr ${top cpu 5}%
${color0}RAM ${color0}${alignr}${mem}/$memmax
${membar 5,}
${top_mem name 1} $alignr ${top_mem mem_res 1}
${top_mem name 2} $alignr ${top_mem mem_res 2}
${top_mem name 3} $alignr ${top_mem mem_res 3}
${top_mem name 4} $alignr ${top_mem mem_res 4}
${top_mem name 5} $alignr ${top_mem mem_res 5}
${color0}GPU${alignr}${nvidia gpuutil}%
${execbar nvidia-smi --query-gpu=utilization.gpu --format=csv,noheader,nounits}
${color0}GPU Temp ${alignr}${color0}${nvidia temp} °C
${color0}Fan Speed ${alignr}${color0}${execi 5 nvidia-settings -q [fan:0]/GPUCurrentFanSpeed -t} %
${color0}GPU Clock ${alignr}${color0}${nvidia gpufreq} MHz
${color0}Mem Clock ${alignr}${color0}${nvidia memfreq} MHz
${color0}Mem Used:
${color0}${execi 5 nvidia-settings -q [gpu:0]/UsedDedicatedGPUMemory -t} / ${exec nvidia-settings -q [gpu:0]/TotalDedicatedGPUMemory -t} MiB
]];