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/config57
1 files changed, 57 insertions, 0 deletions
diff --git a/.config/i3status/config b/.config/i3status/config
new file mode 100644
index 0000000..d381c3e
--- /dev/null
+++ b/.config/i3status/config
@@ -0,0 +1,57 @@
+# 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 {
+        colors = true
+        interval = 5
+}
+
+order += "disk /"
+order += "wireless wlp3s0"
+order += "ethernet enp0s25"
+order += "ethernet tun0"
+order += "battery all"
+order += "load"
+order += "cpu_temperature 0"
+order += "tztime local"
+
+wireless wlp3s0 {
+        format_up = "W: (%quality at %essid) %ip"
+        format_down = "W: down"
+}
+
+ethernet enp0s25 {
+        # if you use %speed, i3status requires root privileges
+        format_up = "E: %ip (%speed)"
+        format_down = "E: down"
+}
+
+ethernet tun0 {
+        format_up = "V: %ip"
+        format_down = "V: down"
+}
+
+battery all {
+        format = "%status %percentage %remaining"
+}
+
+cpu_temperature 0 {
+        format = "T: %degrees °C"
+}
+
+tztime local {
+        format = "%Y-%m-%d %H:%M:%S"
+}
+
+load {
+        format = "L: %1min"
+}
+
+disk "/" {
+        format = "%avail"
+}