-
Notifications
You must be signed in to change notification settings - Fork 7
/
processes_rc
58 lines (54 loc) · 1.78 KB
/
processes_rc
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
conky.config = {
background = false,
font = 'sans:size=10',
--xftfont sans:size=10
use_xft = true,
xftalpha = 0.9,
update_interval = 2,
imlib_cache_size = 0,
total_run_times = 0,
own_window = true,
own_window_type = 'dock',
--own_window_transparent yes
own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
own_window_argb_visual = true,
own_window_argb_value = 180,
own_window_colour = '#224466',
double_buffer = true,
minimum_width = 225,
draw_shades = false,
draw_outline = false,
draw_borders = false,
draw_graph_borders = true,
default_color = '#101010',
default_shade_color = '#101010',
alignment = 'top_left',
gap_x = 320,
gap_y = 350,
no_buffers = true,
cpu_avg_samples = 1,
uppercase = false,
border_inner_margin = 15,
--colors
color1 = '#96A0DF',
color2 = '#aaa',
color3 = '#ddd',
};
conky.text = [[
${color1}${font Oswald:size=10:bold}PROCESSES ${color2} ${hr 2}
${color3}${font Open Sans:size=9}
CPU Clock Speed: ${alignr}${freq_g} GHz
Total Processes: ${alignr}$processes ($running_processes running)
${color3}CPU : ${cpu cpu0}% ${alignr}${color1}${cpubar cpu0 6,140}
${color3}CPU1: ${cpu cpu1}% ${alignr}${color1}${cpubar cpu1 6,140}
${color3}CPU2: ${cpu cpu2}% ${alignr}${color1}${cpubar cpu2 6,140}
${color3}CPU3: ${cpu cpu3}% ${alignr}${color1}${cpubar cpu3 6,140}
${color3}CPU4: ${cpu cpu3}% ${alignr}${color1}${cpubar cpu4 6,140}
${color3}Top Processes:
${font Open Sans:pixelsize=9}Name: $alignr PID CPU MEM
${top name 1} $alignr ${top pid 1} ${top cpu 1} ${top mem 1}
${top name 2} $alignr ${top pid 2} ${top cpu 2} ${top mem 2}
${top name 3} $alignr ${top pid 3} ${top cpu 3} ${top mem 3}
${top name 4} $alignr ${top pid 4} ${top cpu 4} ${top mem 4}
${top name 5} $alignr ${top pid 5} ${top cpu 5} ${top mem 5}
]];