summaryrefslogtreecommitdiff
path: root/i3status.md
diff options
context:
space:
mode:
Diffstat (limited to 'i3status.md')
-rw-r--r--i3status.md56
1 files changed, 56 insertions, 0 deletions
diff --git a/i3status.md b/i3status.md
new file mode 100644
index 0000000..6cffbe9
--- /dev/null
+++ b/i3status.md
@@ -0,0 +1,56 @@
+# i3status configuration file.
+# see "man i3status" for documentation.
+
+# It is important that this file is edited as UTF-8.
+# The following line should contain a sharp s:
+# ß
+# If the above line is not correctly displayed, fix your editor first!
+
+general {
+ output_format = "i3bar"
+ colors = true
+ interval = 10
+}
+
+order += "wireless _first_"
+order += "ethernet _first_"
+order += "disk /"
+order += "cpu_usage"
+order += "memory"
+order += "tztime local"
+order += "volume master"
+
+wireless _first_ {
+ format_up = " %essid (%quality) %ip"
+ format_down = " down"
+}
+
+ethernet _first_ {
+ format_up = " %ip"
+ format_down = " down"
+}
+
+disk "/" {
+ format = " %avail"
+}
+
+cpu_usage {
+ format = " %usage"
+}
+
+memory {
+ format = " %used"
+ threshold_degraded = "80%"
+}
+
+tztime local {
+ format = " %Y-%m-%d %H:%M:%S"
+}
+
+volume master {
+ format = " %volume"
+ format_muted = " muted"
+ device = "default"
+ mixer = "Master"
+}
+