summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <mail2xengineering@protonmail.com>2021-06-11 15:04:44 +0200
committerxengineering <mail2xengineering@protonmail.com>2021-06-11 15:27:17 +0200
commitd4420b75d2acff19c592ef1d2b5c7fc376879b1f (patch)
treedf8cf94bf6c8871974abe87ae79c6c6e6cdefeb2
parent6b4da7174799703f067818d9784fc883f7f870f2 (diff)
downloaddotfiles-d4420b75d2acff19c592ef1d2b5c7fc376879b1f.tar
dotfiles-d4420b75d2acff19c592ef1d2b5c7fc376879b1f.tar.zst
dotfiles-d4420b75d2acff19c592ef1d2b5c7fc376879b1f.zip
Add i3status Config with 'Kalenderwoche'
-rw-r--r--.config/i3status/config53
1 files changed, 53 insertions, 0 deletions
diff --git a/.config/i3status/config b/.config/i3status/config
new file mode 100644
index 0000000..6864525
--- /dev/null
+++ b/.config/i3status/config
@@ -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 = 5
+}
+
+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 = "%avail"
+}
+
+load {
+ format = "%1min"
+}
+
+memory {
+ format = "%used | %available"
+ threshold_degraded = "1G"
+ format_degraded = "MEMORY < %available"
+}
+
+tztime local {
+ format = "KW %U %Y-%m-%d %H:%M:%S"
+}