-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconky.conf
59 lines (58 loc) · 1.84 KB
/
conky.conf
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
conky.config = {
alignment = 'top_right',
background = false,
border_width = 1,
cpu_avg_samples = 2,
default_color = 'white',
default_outline_color = 'white',
default_shade_color = 'white',
double_buffer = true,
draw_borders = false,
draw_graph_borders = true,
draw_outline = false,
draw_shades = false,
extra_newline = false,
font = 'DejaVu Sans Mono:size=12',
gap_x = 0,
gap_y = 30,
minimum_height = 5,
minimum_width = 5,
net_avg_samples = 2,
no_buffers = true,
out_to_console = false,
out_to_ncurses = false,
out_to_stderr = false,
out_to_x = true,
own_window = true,
own_window_class = 'Conky',
own_window_type = 'desktop',
show_graph_range = false,
show_graph_scale = false,
stippled_borders = 0,
update_interval = 1.0,
uppercase = false,
use_spacer = 'none',
use_xft = true,
own_window_transparent = true,
own_window_argb_visual = true,
own_window_type = 'desktop',
}
conky.text = [[
${color red}UpT1mE| $uptime
${color white}$mem/$memmax
${color lightgreen}MeM | ${membar 16}
${color lightcyan}${memgraph 000000 ffffff}
CPU | $cpu | ${cpubar 16}
${color orange}Pr0c tEmp: $color${acpitemp}°C
${cpugraph 000000 ffffff}
${color lightblue}BAT ${exec acpi -b | grep -o '[0-9]\+%'}${color red}${battery_bar 4,150 BAT0}
${color purple}T0r : ${exec pgrep -x tor}
${color darkgray}kl0@k: ${exec pgrep -x kloak}
${color yellow}VPN: ${exec if ip link show | grep -q 'tun'; then echo true; else echo false; fi}
${color orange}NekoRay VPN (TUN mode)
${color red}IP addreSs: ${color lightgreen}${addr nekoray-tun}
${color brown}Up speed: $color${upspeedf nekoray-tun} Kb/sec
${upspeedgraph nekoray-tun 25,120 4285F4 a8a8a8}
${color brown}Down speed: $color${downspeedf nekoray-tun} Kb/sec
${downspeedgraph nekoray-tun 25,120 4285F4 a8a8a8}
]]