-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi3status.conf
60 lines (50 loc) · 1.07 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
general {
output_format = i3bar
colors = true
interval = 3
}
order += "volume one"
order += "volume two"
order += "disk /"
order += "disk /nix/store"
order += "disk /home"
order += "wireless wlp4s0"
order += "path_exists VPN"
order += "battery 0"
order += "tztime local"
volume one {
format = "♪: %volume"
format_muted = "♪: muted (%volume)"
device = "pulse:0"
}
volume two {
format = "♪: %volume"
format_muted = "♪: muted (%volume)"
device = "pulse:1"
}
wireless wlp4s0 {
format_up = "W: (%quality at %essid) %ip"
format_down = "W: down"
}
path_exists VPN {
path = "/proc/sys/net/ipv4/conf/tun0"
}
disk "/" {
format = "%avail"
}
disk "/nix/store" {
format = "%avail"
}
disk "/home" {
format = "%avail"
}
battery 0 {
format = "%status %percentage %remaining"
last_full_capacity = true
integer_battery_capacity = true
low_threshold = 15
threshold_type = percentage
}
tztime local {
format = "%Y-%m-%d %H:%M:%S"
}