-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.conkyrc-fluke
More file actions
58 lines (51 loc) · 1.63 KB
/
.conkyrc-fluke
File metadata and controls
58 lines (51 loc) · 1.63 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
-- Conky config for my work laptop
-- Modified fom from https://bbs.archlinux.org/viewtopic.php?pid=1084822#p1084822
conky.config = {
background = false,
double_buffer = true,
update_interval = 1,
cpu_avg_samples = 5,
net_avg_samples = 5,
no_buffers = true,
-- Window base (for if we choose to launch as a window) --
own_window = true,
own_window_type = 'normal',
own_window_transparent = true,
-- Window looks --
alignment = 'top_left',
gap_x = 1335,
gap_y = 34,
minimum_height = 250,
minimum_width = 5,
border_width = 0,
draw_borders = false,
draw_graph_borders = false,
default_color = 'ffffff',
default_outline_color = 'ffffff',
-- Font --
use_xft = true,
xftalpha = 1,
font = 'mononoki:size=12',
}
conky.text = [[
# SYSTEM
Kernel:${alignr}$kernel ($machine)
# CPU
C1:${goto 60}${alignr}${cpu cpu1}% ${cpubar cpu1 6,80}
C2:${goto 60}${alignr}${cpu cpu2}% ${cpubar cpu2 6,80}
C3:${goto 60}${alignr}${cpu cpu3}% ${cpubar cpu3 6,80}
C4:${goto 60}${alignr}${cpu cpu4}% ${cpubar cpu4 6,80}
C5:${goto 60}${alignr}${cpu cpu5}% ${cpubar cpu5 6,80}
C6:${goto 60}${alignr}${cpu cpu6}% ${cpubar cpu6 6,80}
C7:${goto 60}${alignr}${cpu cpu7}% ${cpubar cpu7 6,80}
C8:${goto 60}${alignr}${cpu cpu8}% ${cpubar cpu8 6,80}
# RAM
MEM:${goto 60}$mem${alignr}$memperc% ${membar 6,80}
SWP:${goto 60}$swap${alignr}$swapperc% ${swapbar 6,80}
# Disk and Network
/${goto 60}${fs_used /}${alignr}${fs_used_perc /}% ${fs_bar 6,80 /}
${diskiograph sda 20,240 285577 ffffff -t}
HDD: ${diskio sda}
${downspeedgraph enp0s31f6 20,120 285577 ffffff -t} ${upspeedgraph enp0s31f6 20,120 285577 ffffff -t}
D: ${downspeed enp0s31f6}${goto 145}U: ${upspeed enp0s31f6}
]]