-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.i3status.conf.tx
102 lines (87 loc) · 1.98 KB
/
.i3status.conf.tx
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# i3status configuration file.
# see "man i3status" for documentation.
# It is important that this file is edited as UTF-8.
# The following line should contain a sharp s:
# ß
# If the above line is not correctly displayed, fix your editor first!
general {
colors = true
interval = 5
output_format="i3bar"
}
order += "ipv6"
order += "disk /home"
#order += "disk /usr"
#order += "disk /usr/local"
#order += "run_watch D"
order += "ethernet lo1"
order += "ethernet iwx0"
#order += "ethernet em0"
order += "wireless iwx0"
order += "battery all"
order += "cpu_usage"
order += "volume master"
order += "tztime local"
ipv6 {
format_up = "%ip"
format_down = ""
}
ethernet lo1 {
format_up = "V: %ip"
format_down = "V"
}
ethernet iwx0 {
format_up = "I: %ip"
format_down = "I"
}
wireless iwx0 {
#format_up = "W: (%quality at %essid, %bitrate)"
format_up = "W: %essid,%signal"
format_down = "W"
}
ethernet em0 {
# if you use %speed, i3status requires root privileges
format_up = "E: up"
#format_up = "E: %ip"
format_down = "E"
}
battery all {
format = "%status %percentage %remaining, %consumption"
format_down = "No battery"
integer_battery_capacity = true
status_chr = "CHR"
status_bat = "BAT"
status_full = "FULL"
threshold_type = percentage
low_threshold = 10
path = "/sys/class/power_supply/BAT%d/uevent"
}
run_watch D {
pidfile = "/var/db/dhclient.leases.*"
format_down = ""
}
tztime local {
format = "%Y-%m-%d %H:%M (CW %V) "
}
disk "/usr" {
format = "u: %avail"
low_threshold = 2
threshold_type = gbytes_avail
}
disk "/usr/local" {
format = "l: %avail"
low_threshold = 2
threshold_type = gbytes_avail
}
disk "/home" {
format = "h: %avail"
low_threshold = 5
threshold_type = gbytes_avail
}
volume master {
format = "M: %volume"
format_muted = "M: muted (%volume)"
device = "default"
mixer = "Master"
mixer_idx = 0
}