-
Notifications
You must be signed in to change notification settings - Fork 1
/
conky-job
51 lines (43 loc) · 1.77 KB
/
conky-job
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
out_to_x no
own_window yes
out_to_console yes
background no
max_text_width 0
# Update interval in seconds
update_interval 1.0
# 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 route
# 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
color1 1abc9c
# Stuff after 'TEXT' will be formatted on screen
TEXT
# JSON for i3bar
[
{ "full_text" : "${fs_free /home}" , "color" : "\#ecf0f1" },
{ "full_text" : "RAM ${memperc}%" , "color" : ${if_match ${memperc}<80}"\#ecf0f1"${else}"\#c0392b"${endif} },
{"full_text" : "${mem} ", "color" : "\#27ae60"},
{"full_text" : "${swap}", "color" : "\#8e44ad"},
{"full_text" : "♬ ${exec amixer get Master -M | egrep -o '[0-9]{1,3}%' | head -1}","color" : "\#d5e0cc"},
{"full_text" : "${exec echo '' }", "color" : "\#16a085" },
{"full_text" : "${downspeed wlp3s0}", "color" : "\#27ae60"},
{"full_text" : "${upspeed wlp3s0}", "color" : "\#ecf0f1"},
{"full_text" : "${totaldown wlp3s0}", "color" : "\#ecf0f1"},
{"full_text" : "${exec date '+ %H:%M:%S' }" , "color" : "\#27ae60"},
{"full_text" : "${exec date '+ %d.%m' }" },
{"full_text" : "${exec sh ~/.i3/sh/layouts}", "color" : "\#8e44ad"}
],