about summary refs log tree commit diff stats
path: root/config/i3status/config
blob: e59aeb62834394a1b9f3b2de0b0c86d9d4c1296d (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
# i3status config

general {
	output_format = "i3bar"
}

order += "volume master"
order += "wireless wlan0"
order += "battery all"
order += "cpu_usage"
order += "time"

volume "master" {
	device = "default"
	mixer = "Master"
}

wireless "wlan0" {
	 format_up = "%essid %quality"
	 format_down = "[no wifi]"
}

battery "all" {
	format = "%status %percentage (%remaining)"
	format_down = "[no battery]"
}

cpu_usage {
	  format = "CPU %usage"
}

time {
     format = "%e %a %H:%M"
}