-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconkyrc_laptop
116 lines (84 loc) · 3.74 KB
/
conkyrc_laptop
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
105
106
107
108
109
110
111
112
113
114
115
116
conky.config = {
-- Conky settings #
background = false,
update_interval = 1,
double_buffer = true,
no_buffers = true,
-- Window specifications #
own_window = true,
own_window_type = 'normal',
own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
own_window_title = '',
own_window_colour = '#2D2D4D',
own_window_argb_value = 220,
own_window_argb_visual = true,
own_window_type = 'override',
minimum_width = 250,
-- Alignment #
alignment = 'top_right',
gap_x = 50,
gap_y = 00,
border_inner_margin = 15,
border_outer_margin = 0,
-- Graphics settings #
draw_shades = false,
draw_outline = false,
draw_borders = false,
draw_graph_borders = false,
-- Text settings #
use_xft = true,
xftalpha = 1,
font = 'Open Sans Light:size=10',
override_utf8_locale = true,
imlib_cache_size = 0,
-- Color scheme #
default_color = '#DCDCDC',
color1 = '#0099CC',
color2 = '#9933CC',
color3 = '#669900',
color4 = '#FF8800',
color5 = '#CC0000',
color6 = '#AAAAAA',
color7 = '#484848',
};
conky.text = [[
${color}${font DotMatrix:size=32}${alignc}${time %H%M}
${font}${color6}${alignc}${voffset -20}${time %A}
${color1}Date:${color3}${alignr}${time %d/%m/%y}
${color7}${hr}${color}
${color7}${hr}${color}
${if_existing /proc/net/route enp0s25}
${color1}enp0s25: ${color3}${alignr}${addr enp0s25}
${color1}Up:${color} ${color3}${upspeed enp0s25}${color}${alignr}${color1}Down:${color} ${color3}${downspeed enp0s25}${color}
${upspeedgraph enp0s25 20,120 FF8800 FF8800}${alignr}${downspeedgraph enp0s25 20,120 FF8800 FF8800}
${color1}Sent:${color} ${color2}${totalup enp0s25}${color}${alignr}${color1}Received:${color} ${color2}${totaldown enp0s25}${color}
${else}${if_existing /proc/net/route wlp170s0}
${color1}wlp170s0: ${color3}${alignr}${addr wlp170s0}
${color1}Up:${color} ${color3}${upspeed wlp170s0}${color}${alignr}${color1}Down:${color} ${color3}${downspeed wlp170s0}${color}
${upspeedgraph wlp170s0 20,120 FF8800 FF8800}${alignr}${downspeedgraph wlp170s0 20,120 FF8800 FF8800}
${color1}Sent:${color} ${color2}${totalup wlp170s0}${color}${alignr}${color1}Received:${color} ${color2}${totaldown wlp170s0}${color}
${else}
Network disconnected
${color6}Connect to a network to see statistics${color}
${voffset 50}
${endif}${endif}
${color7}${hr}${color}
${color1}Kernel:${color3}${alignr}$kernel
${color1}UpTime:${color3}${alignr}$uptime
${color1}Governor: ${color3}${alignr}${execi 5 cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor}
${color1}Speed: ${color3}${alignr}${execi 5 ~/.conky/scripts/cpu_mhz}GHz
${color1}Cpu1:${color3}${alignr}${cpu cpu1}% ${cpu cpu2}% ${color2}${execi 20 sensors coretemp-isa-0000 |grep "Core 0" |awk '{print $3}'}
${color1}Cpu2:${color3}${alignr}${cpu cpu3}% ${cpu cpu4}% ${color2}${execi 20 sensors coretemp-isa-0000 |grep "Core 1" |awk '{print $3}'}
${color1}Cpu3:${color3}${alignr}${cpu cpu5}% ${cpu cpu6}% ${color2}${execi 20 sensors coretemp-isa-0000 |grep "Core 2" |awk '{print $3}'}
${color1}Cpu4:${color3}${alignr}${cpu cpu7}% ${cpu cpu8}% ${color2}${execi 20 sensors coretemp-isa-0000 |grep "Core 3" |awk '{print $3}'}
${color2}${cpugraph cpu1 20,120 FF8800 FF8800} ${color2}${cpugraph cpu2 20,120 FF8800 FF8800}
${color2}${cpugraph cpu3 20,120 FF8800 FF8800} ${color2}${cpugraph cpu4 20,120 FF8800 FF8800}
${color2}${cpugraph cpu5 20,120 FF8800 FF8800} ${color2}${cpugraph cpu6 20,120 FF8800 FF8800}
${color2}${cpugraph cpu7 20,120 FF8800 FF8800} ${color2}${cpugraph cpu8 20,120 FF8800 FF8800}
${color1}Ram:${color3}${alignr}$mem
${color1}Root: ${color3}${alignr}${fs_used_perc /}%
${color1}Disk IO:${color3} ${alignr}$diskio
${color2}${diskiograph 20,240 FF8800 FF8800}
${color1}Battery: ${color3}${alignr}${battery BAT1} ${color2}${battery_time BAT1}
${color7}${hr}${color}${execpi 300 ~/.conky_agenda }
]];