aboutsummaryrefslogtreecommitdiff
path: root/i3/i3status.conf
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2023-06-17 13:25:53 +0100
committerJuan J. Martinez <jjm@usebox.net>2023-06-17 13:25:53 +0100
commite2dc82601efa046ec6f444b070c54a4e4235ff4e (patch)
treedfc348bf821742bd59ff8070e76530c95f3b6a3d /i3/i3status.conf
parentdbc8ca87edb1c92b6c4422c206db4415cfa1e1d2 (diff)
downloaddotnvim-e2dc82601efa046ec6f444b070c54a4e4235ff4e.tar.gz
dotnvim-e2dc82601efa046ec6f444b070c54a4e4235ff4e.zip
Trying i3
Diffstat (limited to 'i3/i3status.conf')
-rw-r--r--i3/i3status.conf51
1 files changed, 51 insertions, 0 deletions
diff --git a/i3/i3status.conf b/i3/i3status.conf
new file mode 100644
index 0000000..d5f50dd
--- /dev/null
+++ b/i3/i3status.conf
@@ -0,0 +1,51 @@
+# 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 += "load"
+order += "cpu_temperature 0"
+order += "memory"
+order += "disk /"
+order += "volume master"
+order += "tztime local"
+
+load {
+ format = "Load %1min"
+}
+
+memory {
+ format = "Mem %used of %available"
+ threshold_degraded = "1G"
+ format_degraded = "MEMORY < %available"
+}
+
+tztime local {
+ format = "%Y-%m-%d %H:%M:%S"
+}
+
+cpu_temperature 0 {
+ format = "Temp %degrees °C"
+ path = "/sys/devices/platform/coretemp.0/hwmon/hwmon1/temp1_input"
+ max_threshold = 75
+}
+
+disk "/" {
+ format = "Disk %free"
+}
+
+volume master {
+ format = "Vol %volume"
+ format_muted = "Vol muted (%volume)"
+ device = "default"
+ mixer = "Master"
+ mixer_idx = 0
+}