-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathi3status.conf
79 lines (64 loc) · 1.49 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
75
76
77
78
79
general {
interval = 5
}
order += "disk /"
order += "load"
order += "tztime date"
order += "tztime boston"
order += "tztime local"
order += "tztime asia"
order += "tztime la"
wireless wlan0 {
format_up = "W: (%quality at %essid, %bitrate) %ip"
format_down = "W: down"
}
ethernet em1 {
# if you use %speed, i3status requires the cap_net_admin capability
format_up = "E: %ip (%speed)"
format_down = "E: down"
}
battery 0 {
format = "%status %percentage %remaining %emptytime"
format_down = "No battery"
path = "/sys/class/power_supply/BAT%d/uevent"
low_threshold = 10
}
run_watch DHCP {
pidfile = "/var/run/dhclient*.pid"
}
run_watch VPNC {
# file containing the PID of a vpnc process
pidfile = "/var/run/vpnc/pid"
}
path_exists VPN {
# path exists when a VPN tunnel launched by nmcli/nm-applet is active
path = "/proc/sys/net/ipv4/conf/tun0"
}
tztime date {
format = "%d-%m %A"
}
tztime local {
format = "Sofia %H:%M"
}
tztime boston {
format = "Boston %H:%M"
timezone = "America/New_York"
}
tztime asia {
format = "Asia %H:%M"
timezone = "Asia/Bangladesh"
}
tztime la {
format = "Los Angeles %H:%M"
timezone = "America/Los_Angeles"
}
load {
format = "%5min"
}
cpu_temperature 0 {
format = "T: %degrees °C"
path = "/sys/devices/platform/coretemp.0/temp1_input"
}
disk "/" {
format = "%free"
}