forked from stkevintan/i3dotfile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi3status.conf
85 lines (73 loc) · 1.51 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
80
81
82
83
84
85
general {
colors = true
color_good = "#769070"
color_degraded = "#60867f"
color_bad = "#c96666"
interval = 1
}
order += "disk /"
order += "disk /home"
order += "cpu_usage"
order += "cpu_temperature 0"
# order += "battery 0"
order += "volume master"
order += "wireless _first_"
order += "ethernet _first_"
#order += "path_exists VPN"
order += "tztime local"
disk "/" {
format = " %avail"
prefix_type = "custom"
}
disk "/home" {
format = " %avail"
prefix_type = "custom"
}
cpu_usage {
format = " %usage"
}
cpu_temperature 0 {
format = " %degrees °C"
max_threshold = 65
path = "/sys/class/thermal/thermal_zone0/temp"
}
# wireless _first_ {
# format_up = ": %bitrate"
# format_down = "☡"
# }
wireless _first_
{
format_up = " %bitrate %frequency %essid %ip"
format_down = ""
}
ethernet _first_
{
# if you use %speed, i3status requires root privileges
format_up = " %speed %ip"
format_down = ""
}
path_exists VPN {
path = "/proc/sys/net/ipv4/conf/tun0"
format = ": %status"
}
battery 0 {
format = "%status %percentage"
format_down = " NULL"
status_chr = ": CHR"
status_bat = ": BAT"
status_full = ": FULL"
hide_seconds = true
last_full_capacity = true
integer_battery_capacity = true
}
volume master {
format = " %volume"
device = "default"
mixer = "Master"
mixer_idx = 0
}
tztime local {
# format = " %H:%M %A, %b %d, %Y"
format = " %H:%m %A %b %d "
# format = "%l:%M%p"
}