summaryrefslogtreecommitdiff
path: root/.config/i3status
diff options
context:
space:
mode:
authorDustin Walker <dustin.walker@email.wsu.edu>2025-01-16 17:00:08 -0500
committerDustin Walker <dustin.walker@email.wsu.edu>2025-01-16 17:00:08 -0500
commitfcf44b17142cbeaf1f6a4b66e5ab0eed1483ebe4 (patch)
treef9d4625d612af99557ff0249dbf5f1fccc6175c8 /.config/i3status
migration commitHEADmaster
Diffstat (limited to '.config/i3status')
-rw-r--r--.config/i3status/config76
1 files changed, 76 insertions, 0 deletions
diff --git a/.config/i3status/config b/.config/i3status/config
new file mode 100644
index 0000000..c8d096b
--- /dev/null
+++ b/.config/i3status/config
@@ -0,0 +1,76 @@
+# 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 = 1
+}
+
+#order += "ipv6"
+order += "read_file weather"
+order += "disk /"
+order += "wireless _first_"
+order += "ethernet _first_"
+order += "battery all"
+order += "volume master"
+order += "load"
+order += "cpu_usage"
+order += "memory"
+order += "tztime local"
+
+wireless _first_ {
+ format_up = "W: (%quality at %essid) %ip"
+ format_down = "W: down"
+}
+
+ethernet _first_ {
+ # if you use %speed, i3status requires root privileges
+ format_up = "E: %ip (%speed)"
+ format_down = "E: down"
+}
+
+battery all {
+ format = "%status %percentage %remaining"
+}
+
+tztime local {
+ format = "%Y-%m-%d %H:%M:%S"
+}
+
+load {
+ format = "LOAD: %1min"
+}
+
+cpu_usage {
+ max_threshold = 90
+ degraded_threshold = 80
+ format = "CPU: %usage"
+}
+
+memory {
+ format = "RAM: %used / %total"
+}
+
+disk "/" {
+ format = "DISK: %avail"
+}
+
+volume master {
+ format = "♪: %volume"
+ format_muted = "♪: muted (%volume)"
+ device = "default"
+ mixer = "Master"
+ mixer_idx = 0
+}
+
+read_file weather {
+ format = "%content"
+ format_bad = "weather unknown"
+ path = "/tmp/weather"
+}