-
Notifications
You must be signed in to change notification settings - Fork 1
/
i3bar-conkyrc_silence
42 lines (39 loc) · 2.3 KB
/
i3bar-conkyrc_silence
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
# vim: filetype=rc:
# conky
out_to_x no
override_utf8_locale no
own_window no
# conky-cli
background no
out_to_console yes
update_interval 2.0
total_run_times 0
short_units yes
use_spacer left
cpu_avg_samples 2
max_text_width 0
# JSON for i3bar
TEXT
[ \
{ "full_text" : " [load ", "color" : "\#EEE8D5", "separator" : false, "separator_block_width" : 3 }, \
{ "full_text" : "${loadavg }", "color" : ${if_match ${loadavg 1}>5}"\#DC322F" ${else}"\#268BD2"${endif}, "separator" : false, "separator_block_width" : 3 }, \
\
{ "full_text" : "] [cpu ", "color" : "\#EEE8D5", "separator" : false, "separator_block_width" : 3 }, \
{ "full_text" : "${cpu cpu0}%", "color" : ${if_match ${cpu cpu0}>50}"\#DC322F"${else}"\#268BD2"${endif}, "min_width" : 25, "separator" : false, "separator_block_width" : 3 }, \
\
{ "full_text" : "] [mem ", "color" : "\#EEE8D5", "separator" : false, "separator_block_width" : 3 }, \
{ "full_text" : "${memperc}%", "color" : ${if_match ${memperc}>50}"\#DC322F"${else}"\#268BD2"${endif}, "min_width" : 25, "separator" : false, "separator_block_width" : 3 }, \
\
{ "full_text" : "] [disk ", "color" : "\#EEE8D5", "separator" : false, "separator_block_width" : 3 }, \
{ "full_text" : "${fs_used_perc /}% ", "color" : "\#268BD2", "separator" : false, "separator_block_width" : 3 }, \
{ "full_text" : "${fs_used_perc /home}% ", "color" : "\#268BD2", "separator" : false, "separator_block_width" : 3 }, \
{ "full_text" : "${fs_used_perc /extra}% ", "color" : "\#268BD2", "separator" : false, "separator_block_width" : 3 }, \
\
{ "full_text" : "[ battery ", "color" : "\#EEE8D5", "separator" : false, "separator_block_width" : 3 }, \
{ "full_text" : "${battery_short BAT1} ${execi 60 $HOME/.config/i3/i3bar-battery}", "color" : ${if_match ${battery_percent BAT1}<20}"\#DC322F" ${else}"\#268BD2"${endif}, "min_width" : 70, "separator" : false, "separator_block_width" : 3 }, \
\
{ "full_text" : "] [", "color" : "\#EEE8D5", "separator" : false, "separator_block_width" : 3 }, \
{ "full_text" : "${time %d %B %Y %H:%M}", "color" : "\#268BD2", "separator" : false, "separator_block_width" : 3 }, \
\
{ "full_text" : "]", "color" : "\#EEE8D5", "separator" : false, "separator_block_width" : 3 } \
],