-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.i3status.conf
70 lines (59 loc) · 1.34 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
general {
colors = true
interval = 1
output_format = "i3bar"
markup = "pango"
}
order += "disk /"
order += "run_watch DHCP"
order += "ethernet vpnch"
order += "wireless _first_"
#order += "ethernet _first_"
#order += "volume master"
order += "battery 0"
order += "load"
order += "tztime local"
path_exists proton {
path = "/proc/sys/net/ipv4/conf/proton0"
}
path_exists VPN {
path = "/proc/sys/net/ipv4/conf/tun0"
}
wireless _first_ {
format_up = "W: %essid %quality %ip"
format_down = "W: down"
}
ethernet _first_ {
format_up = "E: %ip (%speed)"
format_down = "E: down"
}
ethernet vpnch {
format_up = "VPN on"
format_down = "VPN off"
}
battery 0 {
format = "%percentage %status %remainingh"
format_down = "No battery"
status_chr = "⚡"
status_bat = '<span font="Noto Emoji">🔋</span>'
status_unk = "?"
status_full = "☻"
path = "/sys/class/power_supply/BAT%d/uevent"
low_threshold = 10
last_full_capacity = true
}
volume master {
format = "♪: %volume"
format_muted = "♪: muted (%volume)"
device = "pulse:bluez_output.04_52_C7_34_F5_90.a2dp-sink"
#pulse:alsa_output.pci-0000_00_1f.3-platform-skl_hda_dsp_generic.HiFi__hw_sofhdadsp_3__sink"
}
tztime local {
format = "%Y-%m-%d %H:%M:%S"
}
load {
format = "%1min"
}
disk "/" {
format = "%avail"
}