-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.i3status.conf
71 lines (64 loc) · 1.86 KB
/
.i3status.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
60
61
62
63
64
65
66
67
68
69
70
71
general {
output_format = "i3bar"
colors = false
markup = pango
interval = 5
color_good = '#2f343f'
color_degraded = '#ebcb8b'
color_bad = '#ba5e57'
}
order += "load"
order += "cpu_temperature 0"
order += "cpu_temperature 1"
order += "cpu_temperature 2"
order += "cpu_temperature 3"
order += "disk /"
order += "disk /home"
order += "disk /mnt/tb3"
order += "wireless wlan0"
order += "volume master"
order += "battery 1"
order += "tztime local"
load {
format = "<span background='#552301'> %5min load </span>"
}
cpu_temperature 0 {
format = "<span background='#552301'> %degrees°C </span>"
path = "/sys/class/thermal/thermal_zone0/temp"
}
cpu_temperature 1 {
format = "<span background='#552301'> %degrees°C </span>"
path = "/sys/class/thermal/thermal_zone1/temp"
}
cpu_temperature 2 {
format = "<span background='#552301'> %degrees°C </span>"
path = "/sys/class/thermal/thermal_zone2/temp"
}
cpu_temperature 3 {
format = "<span background='#552301'> %degrees°C </span>"
path = "/sys/class/thermal/thermal_zone3/temp"
}
disk "/" {
format = "<span background='#717519'> / %free </span>"
}
disk "/home" {
format = "<span background='#717519'> /home %free </span>"
}
disk "/mnt/tb3" {
format = "<span background='#717519'> /mnt/tb3 %free </span>"
}
wireless wlan0 {
format_up = "<span background='#287080'> %essid %ip </span>"
format_down = "<span background='#88c0d0'> wlan0 Disconnected </span>"
}
volume master {
format = "<span background='#9b7b2b'> sound %volume </span>"
format_muted = "<span background='#9b7b2b'> sound Muted </span>"
device = "default"
mixer = "Master"
mixer_idx = 0
}
tztime local {
format = "<span background='#216181'> %time </span>"
format_time = "%a %-d %b %H:%M"
}