about summary refs log tree commit diff stats
path: root/config/i3status
diff options
context:
space:
mode:
Diffstat (limited to 'config/i3status')
-rw-r--r--config/i3status/config34
1 files changed, 34 insertions, 0 deletions
diff --git a/config/i3status/config b/config/i3status/config new file mode 100644 index 0000000..e59aeb6 --- /dev/null +++ b/config/i3status/config
@@ -0,0 +1,34 @@
1# i3status config
2
3general {
4 output_format = "i3bar"
5}
6
7order += "volume master"
8order += "wireless wlan0"
9order += "battery all"
10order += "cpu_usage"
11order += "time"
12
13volume "master" {
14 device = "default"
15 mixer = "Master"
16}
17
18wireless "wlan0" {
19 format_up = "%essid %quality"
20 format_down = "[no wifi]"
21}
22
23battery "all" {
24 format = "%status %percentage (%remaining)"
25 format_down = "[no battery]"
26}
27
28cpu_usage {
29 format = "CPU %usage"
30}
31
32time {
33 format = "%e %a %H:%M"
34} \ No newline at end of file