summaryrefslogtreecommitdiff
path: root/i3/.config/i3status/config
blob: 5221830effb21de376b1b8017d0cf4adabfb02c0 (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
order += "wireless wlan0"
order += "battery 1"
order += "cpu_temperature 0"
order += "cpu_usage"
order += "load"
order += "tztime local"

wireless wlan0 {
	format_up = "%ip @ %essid"
	format_down = "W: down"
}

battery 1 {
	format = "%status %percentage %remaining"
	format_down = "No battery"
	path = "/sys/class/power_supply/BAT%d/uevent"
	low_threshold = 10
	integer_battery_capacity = true
	status_chr = "⚡"
	status_bat = "🔋"
	status_full = "🔌"
}

tztime local {
	format = "%Y-%m-%d %H:%M"
}

load {
	format = "%1min"
}

cpu_temperature 0 {
	format = "%degrees °C"
	max_threshold = 65
}