aboutsummaryrefslogtreecommitdiff
path: root/i3/.i3status.conf
blob: 9c763f2eeea761b822c13ebf4b19031ee793707d (plain) (blame)
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
general {
	colors = true
	color_degraded = "#ffa500"
	color_bad = "#aa0000"
	interval = 5
	output_format = "i3bar"
}

order += "volume master"
order += "wireless wlp1s0"
order += "battery 0"
order += "cpu_usage"
order += "cpu_temperature 0"
order += "tztime amsterdam"

volume master {
	format = "🔊 %volume"
	format_muted = "🔈 %volume"
	color_degraded = "#777777"
	device = "default"
	mixer = "Master"
	mixer_idx = 0
}

wireless wlp1s0 {
	format_up = "🌐 %essid: %quality, %bitrate"
	format_down = "🚩 wlan down"
}

battery 0 {
	format = "%status %percentage %remaining %consumption"
	hide_seconds = true
	status_chr = "⚡"
	status_bat = "🔋"
	status_full = "🔌"
	status_unk = "?"
	low_threshold = 30
	threshold_type = "percentage"
}

cpu_usage {
	format = "⛵ %usage"
	format_above_degraded_threshold = "🚘 %usage"
	format_above_threshold = "🚀 %usage"
	separator = false
	degraded_threshold = 10
	max_threshold = 50
}

cpu_temperature 0 {
	format = "%degrees°C"
	format_above_threshold = "🥵 %degrees°C"
	path = "/sys/class/thermal/thermal_zone0/temp"
	max_threshold = 50
}

tztime amsterdam {
	format = "📅 %a %b %-d, %H:%M"
	timezone = "Europe/Amsterdam"
}