-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.conkyrc
executable file
·90 lines (75 loc) · 3.88 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
out_to_x no
own_window no
out_to_console yes
background no
max_text_width 0
# Update interval in seconds
update_interval 3
# This is the number of times Conky will update before quitting.
# Set to zero to run forever.
total_run_times 0
# Shortens units to a single character (kiB->k, GiB->G, etc.). Default is off.
short_units yes
# How strict should if_up be when testing an interface for being up?
# The value is one of up, link or address, to check for the interface
# being solely up, being up and having link or being up, having link
# and an assigned IP address.
if_up_strictness address
# Add spaces to keep things from moving about? This only affects certain objects.
# use_spacer should have an argument of left, right, or none
use_spacer left
# Force UTF8? note that UTF8 support required XFT
override_utf8_locale no
# number of cpu samples to average
# set to 1 to disable averaging
cpu_avg_samples 2
# Stuff after 'TEXT' will be formatted on screen
TEXT
# JSON for i3bar
[
{ "full_text" : "CPU" , "color" : "\#ffff00" },
{ "full_text" : "t1 ${cpu cpu1}%" , "color" :
${if_match ${cpu cpu1}<30}"\#ffffff"${else}"\#ff0000"${endif} },
{ "full_text" : "t2 ${cpu cpu2}%" , "color" :
${if_match ${cpu cpu2}<30}"\#ffffff"${else}"\#ff0000"${endif} },
{ "full_text" : "t3 ${cpu cpu3}%" , "color" :
${if_match ${cpu cpu3}<30}"\#ffffff"${else}"\#ff0000"${endif} },
{ "full_text" : "t4 ${cpu cpu4}%" , "color" :
${if_match ${cpu cpu4}<30}"\#ffffff"${else}"\#ff0000"${endif} },
{ "full_text" : "t5 ${cpu cpu5}%" , "color" :
${if_match ${cpu cpu5}<30}"\#ffffff"${else}"\#ff0000"${endif} },
{ "full_text" : "t6 ${cpu cpu6}%" , "color" :
${if_match ${cpu cpu6}<30}"\#ffffff"${else}"\#ff0000"${endif} },
{ "full_text" : "t7 ${cpu cpu7}%" , "color" :
${if_match ${cpu cpu7}<30}"\#ffffff"${else}"\#ff0000"${endif} },
{ "full_text" : "t8 ${cpu cpu8}%" , "color" :
${if_match ${cpu cpu8}<30}"\#ffffff"${else}"\#ff0000"${endif} },
{ "full_text" : "TEMP" , "color" : "\#ffff00" },
{ "full_text" : "CPU${hwmon temp 1}°C" , "color" :
${if_match ${hwmon temp 1}<75}"\#ffffff"${else}"\#ff0000"${endif} },
# { "full_text" : "SDD-L ${exec /usr/sbin/hddtemp /dev/sda | cut -b 34-37}C" , "color" : "\#ffffff" },
# { "full_text" : "SDD-W ${exec /usr/sbin/hddtemp /dev/sdb | cut -b 57-58}°C" , "color" : "\#ffffff" },
# { "full_text" : "GPU ${exec nvidia-smi --query-gpu=temperature.gpu --format=csv,noheader,nounits}°C" , "color" : "\#ffffff" },
{ "full_text" : "ROM" , "color" : "\#ffff00" },
{ "full_text" : "/ ${fs_free /}" , "color" : "\#ffffff" },
{ "full_text" : "H ${fs_free /home}" , "color" : "\#ffffff" },
{ "full_text" : "RAM" , "color" : "\#ffff00" },
{ "full_text" : " ${memperc}%" , "color" :
${if_match ${memperc}<50}"\#ffffff"${else}"\#ff0000"${endif} },
{ "full_text" : "ET" , "color" : "\#ffff00" },
{ "full_text" : "DW ${downspeed enp4s0f1}" , "color" : "\#ffffff" },
{ "full_text" : "UP ${upspeed enp4s0f1}" , "color" : "\#ffffff" },
# { "full_text" : "DW ${downspeed enp4s0f1}b/s (${totaldown enp4s0f1})" , "color" : "\#ffffff" },
# { "full_text" : "UP ${upspeed enp4s0f1}b/s (${totalup enp4s0f1})" , "color" : "\#ffffff" },
{ "full_text" : "WI" , "color" : "\#ffff00" },
{ "full_text" : "DW ${downspeed wlp3s0}" , "color" : "\#ffffff" },
{ "full_text" : "UP ${upspeed wlp3s0}" , "color" : "\#ffffff" },
# { "full_text" : "DW ${downspeed wlp3s0}b/s (${totaldown wlp3s0})" , "color" : "\#ffffff" },
# { "full_text" : "UP ${upspeed wlp3s0}b/s (${totalup wlp3s0})" , "color" : "\#ffffff" },
{ "full_text" : "BATTERY", "color" : "\#ffff00" },
{ "full_text" : "${battery_percent BAT0} %", "color" : "\#ffffff"},
{ "full_text" : "BRIGHT", "color" : "\#ffff00"},
{ "full_text" : "${exec /usr/bin/light} %", "color" : "\#ffffff"},
{ "full_text" : "TIME" , "color" : "\#ffff00" },
{ "full_text" : "${time %H:%M} ${time %d %b %Y}" , "color" : "\#ffffff" }
],