-
Notifications
You must be signed in to change notification settings - Fork 1
/
.conkyrc
104 lines (84 loc) · 3.27 KB
/
.conkyrc
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
96
97
98
99
100
101
102
103
104
conky.config = {
alignment = 'top_left',
-- set to yes if you want Conky to be forked in the background
background = false,
use_xft = true,
font = 'Sans Serif:size=10',
-- Text alpha when using Xft
xftalpha = 0.8,
-- Update interval in seconds
update_interval = 2.0,
-- This is the number of times Conky will update before quitting.
-- Set to zero to run forever.
total_run_times = 0,
-- Create own window instead of using desktop
own_window = true,
own_window_class = 'Conky',
own_window_type = 'normal',
own_window_transparent = false,
own_window_argb_visual = true,
own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
-- Use double buffering (reduces flicker, may not work for everyone)
double_buffer = true,
-- Minimum size of text area
minimum_width = 300,
minimum_height = 500,
maximum_width = 400,
draw_shades = true,
draw_outline = false,
draw_borders = false,
draw_graph_borders = true,
default_color = 'white',
default_shade_color = 'black',
default_outline_color = 'white',
gap_x = 5,
gap_y = 34,
-- Subtract file system buffers from used memory?
no_buffers = true,
uppercase = false,
cpu_avg_samples = 4,
net_avg_samples = 4,
override_utf8_locale = false,
}
conky.text = [[
${font sans-serif:bold:size=10}SYSTEM ${hr 2}
${font sans-serif:normal:size=10}$sysname $kernel $alignr $machine
Uptime:$alignr$uptime
${font sans-serif:bold:size=10}PROCESSORS ${hr 2}
${cpugraph}
CPU1: ${cpu cpu1}% ${cpubar cpu1}
CPU2: ${cpu cpu2}% ${cpubar cpu2}
CPU3: ${cpu cpu3}% ${cpubar cpu3}
CPU4: ${cpu cpu4}% ${cpubar cpu4}
CPU5: ${cpu cpu5}% ${cpubar cpu5}
CPU6: ${cpu cpu6}% ${cpubar cpu6}
CPU7: ${cpu cpu7}% ${cpubar cpu7}
CPU8: ${cpu cpu8}% ${cpubar cpu8}
${font sans-serif:bold:size=10}MEMORY ${hr 2}
${font sans-serif:normal:size=10}RAM $alignc $mem / $memmax $alignr $memperc%
${membar}
swap $alignc ${swap} / ${swapmax} $alignr ${swapperc}%
${swapbar}
${font sans-serif:bold:size=10}DISKS ${hr 2}
${diskiograph}
${font sans-serif:normal:size=10}/ $alignc ${fs_used /} / ${fs_size /} $alignr ${fs_used_perc /}%
${fs_bar /}
${font sans-serif:normal:size=10}JETFLASH $alignc ${fs_used /media/alkurbatov/JETFLASH} / ${fs_size /media/alkurbatov/JETFLASH} $alignr ${fs_used_perc /media/alkurbatov/JETFLASH}%
${fs_bar /media/alkurbatov/JETFLASH}
${font sans-serif:bold:size=10}TOP PROCESSES ${hr 2}
${font sans-serif:normal:size=10}${processes} processes
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}%
${top name 6} ${alignr} ${top pid 6} ${top cpu 6}% ${top mem 6}%
${top name 7} ${alignr} ${top pid 7} ${top cpu 7}% ${top mem 7}%
${font sans-serif:bold:size=10}NETWORK ${hr 2}
${font sans-serif:normal:size=10}IP address: $alignr ${addr wlp0s20f3}
Up: ${upspeed wlp0s20f3} ${alignr} total: ${totalup wlp0s20f3}
${upspeedgraph wlp0s20f3}
Down: ${downspeed wlp0s20f3} ${alignr} total: ${totaldown wlp0s20f3}
${downspeedgraph wlp0s20f3}
]]