summaryrefslogtreecommitdiffstats
path: root/etc/i3status.conf
diff options
context:
space:
mode:
authorAnton Luka Šijanec <anton@sijanec.eu>2023-05-21 22:57:31 +0200
committerAnton Luka Šijanec <anton@sijanec.eu>2023-05-21 22:57:31 +0200
commit66df2b324ab48c4257d5bf32df47c0cc0feec1ff (patch)
tree5d69526a3c4b590bb69d63b9158cbe28a1f7cea5 /etc/i3status.conf
parentc: touchpad disable, mod+v paste, iris video card (diff)
downloadn-66df2b324ab48c4257d5bf32df47c0cc0feec1ff.tar
n-66df2b324ab48c4257d5bf32df47c0cc0feec1ff.tar.gz
n-66df2b324ab48c4257d5bf32df47c0cc0feec1ff.tar.bz2
n-66df2b324ab48c4257d5bf32df47c0cc0feec1ff.tar.lz
n-66df2b324ab48c4257d5bf32df47c0cc0feec1ff.tar.xz
n-66df2b324ab48c4257d5bf32df47c0cc0feec1ff.tar.zst
n-66df2b324ab48c4257d5bf32df47c0cc0feec1ff.zip
Diffstat (limited to '')
-rw-r--r--etc/i3status.conf53
1 files changed, 53 insertions, 0 deletions
diff --git a/etc/i3status.conf b/etc/i3status.conf
new file mode 100644
index 0000000..2995325
--- /dev/null
+++ b/etc/i3status.conf
@@ -0,0 +1,53 @@
+# 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 = 1
+}
+
+order += "ipv6"
+order += "wireless _first_"
+order += "ethernet _first_"
+order += "battery all"
+order += "disk /"
+order += "load"
+order += "memory"
+order += "tztime local"
+
+wireless _first_ {
+ format_up = "W: (%quality at %essid) %ip"
+ format_down = "W: down"
+}
+
+ethernet _first_ {
+ format_up = "E: %ip (%speed)"
+ format_down = "E: down"
+}
+
+battery all {
+ format = "%status %percentage %remaining"
+}
+
+disk "/" {
+ format = "diskavail %avail"
+}
+
+load {
+ format = "load1min %1min"
+}
+
+memory {
+ format = "usedram %used | availram %available"
+ threshold_degraded = "1G"
+ format_degraded = "MEMORY < %available"
+}
+
+tztime local {
+ format = "%Y-%m-%d %H:%M:%S"
+}