-
Notifications
You must be signed in to change notification settings - Fork 0
/
.i3status.conf
74 lines (66 loc) · 1.21 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
72
73
74
load {
format = "%5min"
}
general {
color_degraded = "#cb4b16"
output_format = "i3bar"
interval = "10"
color_bad = "#dc322f"
colors = "true"
color_good = "#859900"
color_separator = "#586e75"
}
battery 0 {
threshold_type = "time"
integer_battery_capacity = "true"
low_threshold = "15"
format = "%percentage"
}
disk /home {
format = "~ %free"
}
tztime sp {
timezone = "America/Sao_Paulo"
format = "SP %H:%M:%S"
}
ethernet eth0 {
format_up = "E: %ip"
format_down = ""
}
run_watch VPN {
pidfile = "/run/openvpn.pid"
format = "%title"
}
volume master {
device = "default"
mixer_idx = "0"
mixer = "Master"
format = "♪: %volume"
}
disk / {
format = "/ %free"
}
cpu_temperature 0 {
path = "/sys/devices/platform/coretemp.0/temp1_input"
format = "%degrees°C"
}
wireless wlp2s0 {
format_up = "W"
format_down = ""
}
run_watch DHCP {
pidfile = "/run/dhcpcd-*.pid"
format = "%title"
}
time {
format = "%d/%m/%y %H:%M:%S"
}
order += "disk /home"
order += "disk /"
order += "run_watch VPN"
order += "wireless wlp2s0"
order += "battery 0"
order += "load"
order += "volume master"
order += "tztime "
order += "time"