summaryrefslogtreecommitdiff
path: root/i3status
diff options
context:
space:
mode:
authorFrederick Yin <fkfd@fkfd.me>2021-12-13 14:27:29 +0800
committerFrederick Yin <fkfd@fkfd.me>2021-12-13 14:27:29 +0800
commit54cadc353110592ddc3a2a90d26fefafaad85b19 (patch)
tree5121ccc8fc4ae7710030e47f6a15e95d037b8449 /i3status
parentbbfd624c1ec9219da8e3ef40ae5f2135289f9732 (diff)
i3status, kitty, sway
Diffstat (limited to 'i3status')
-rw-r--r--i3status/config50
1 files changed, 50 insertions, 0 deletions
diff --git a/i3status/config b/i3status/config
new file mode 100644
index 0000000..94b70ad
--- /dev/null
+++ b/i3status/config
@@ -0,0 +1,50 @@
+# 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 += "ethernet _first_"
+order += "wireless _first_"
+order += "battery all"
+order += "load"
+order += "tztime local"
+
+wireless _first_ {
+ format_up = "W: %essid %quality"
+ format_down = "W: down"
+}
+
+ethernet _first_ {
+ format_up = "E: %ip %speed"
+ format_down = "E: down"
+}
+
+battery all {
+ format = "%status %percentage %remaining"
+}
+
+disk "/" {
+ format = "%avail"
+}
+
+load {
+ format = "%1min"
+}
+
+memory {
+ format = "%used | %available"
+ threshold_degraded = "1G"
+ format_degraded = "MEMORY < %available"
+}
+
+tztime local {
+ format = "%m/%d %H:%M"
+}