blob: f27c24a46d6e819e572adf5813169d97f449a41b (
plain)
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
103
104
105
106
107
108
109
110
111
112
|
# 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 = 10
color_good = "#b5bd68"
color_degraded = "#de935f"
color_bad = "#a3685a"
}
order += "disk /"
order += "disk /home"
order += "ipv6"
order += "ethernet _first_"
order += "wireless _first_"
order += "battery all"
order += "battery 0"
order += "battery 1"
order += "load"
order += "cpu_temperature 0"
order += "volume master"
order += "tztime local"
ipv6 {
format_up = "6"
format_down = "4"
separator = false
separator_block_width = 0
}
ethernet _first_ {
format_up = "E"
format_down = "E"
separator = false
separator_block_width = 0
}
wireless _first_ {
format_up = "W: %quality (%essid) "
format_down = "W"
}
battery 0 {
integer_battery_capacity = true
status_chr = "C"
status_bat = "D"
status_unk = "U"
status_full = "F"
separator = false
format = "%status %percentage"
}
battery 1 {
integer_battery_capacity = true
status_chr = "C"
status_bat = "D"
status_unk = "U"
status_full = "F"
format = "%status %percentage"
}
battery all {
integer_battery_capacity = false
hide_seconds = true
separator = false
format = "%status %remaining (%emptytime %consumption)"
}
volume master {
device = "pulse"
format = "♪: %volume"
format_muted = "♪: 0%%"
}
tztime local {
format = "%Y-%m-%d %H:%M"
}
load {
format = "%1min %5min"
}
cpu_temperature 0 {
format = "T: %degrees ºC"
}
disk "/" {
prefix_type = "custom"
low_threshold = 5
format = "/ %avail"
separator = false
}
disk "/home" {
prefix_type = "custom"
low_threshold = 5
format = "/h %avail"
}
|