|
@@ -0,0 +1,39 @@
|
|
1
|
+# i3status configuration file.
|
|
2
|
+# see "man i3status" for documentation.
|
|
3
|
+
|
|
4
|
+# It is important that this file is edited as UTF-8.
|
|
5
|
+# The following line should contain a sharp s:
|
|
6
|
+# ß
|
|
7
|
+# If the above line is not correctly displayed, fix your editor first!
|
|
8
|
+
|
|
9
|
+general {
|
|
10
|
+ colors = true
|
|
11
|
+ interval = 5
|
|
12
|
+}
|
|
13
|
+
|
|
14
|
+order += "battery 0"
|
|
15
|
+order += "load"
|
|
16
|
+order += "cpu_usage"
|
|
17
|
+order += "disk /home"
|
|
18
|
+order += "volume master"
|
|
19
|
+order += "tztime local"
|
|
20
|
+
|
|
21
|
+battery 0 {
|
|
22
|
+ format = "%status %percentage %remaining"
|
|
23
|
+}
|
|
24
|
+
|
|
25
|
+tztime local {
|
|
26
|
+ format = "%Y-%m-%d %H:%M"
|
|
27
|
+}
|
|
28
|
+
|
|
29
|
+disk "/home" {
|
|
30
|
+ format = "~:%avail"
|
|
31
|
+}
|
|
32
|
+
|
|
33
|
+volume master {
|
|
34
|
+ format = "♪%volume"
|
|
35
|
+ format_muted = "♪---%%"
|
|
36
|
+ device = "default"
|
|
37
|
+ mixer = "Master"
|
|
38
|
+ mixer_idx = 0
|
|
39
|
+}
|