summaryrefslogtreecommitdiff
path: root/i3status/config
diff options
context:
space:
mode:
authortslil clingman <>2020-05-09 14:37:36 -0700
committertslil clingman <>2020-05-09 14:37:36 -0700
commit98f9ef9249146bea697701d1dd969441a3b51981 (patch)
treec4071f12b235e7287a71268d3292a6d3d9da644d /i3status/config
parentb394cf64c724f6578231759d1908b1d2d8de5a18 (diff)
Tracking i3 config for now
Diffstat (limited to 'i3status/config')
-rw-r--r--i3status/config32
1 files changed, 32 insertions, 0 deletions
diff --git a/i3status/config b/i3status/config
new file mode 100644
index 0000000..577519d
--- /dev/null
+++ b/i3status/config
@@ -0,0 +1,32 @@
+# Time-stamp: <2020-05-09 14:36:54 (tslil@forfeit)>
+
+general {
+ colors = true
+ interval = 5
+}
+
+order += "battery all"
+order += "memory"
+order += "cpu_temperature 0"
+order += "tztime local"
+
+battery all {
+ format = "%status %percentage %remaining"
+}
+
+
+memory {
+ format = "RAM %used (%available)"
+ threshold_degraded = "1G"
+ format_degraded = "MEMORY < %available"
+}
+
+tztime local {
+ format = "%d/%H:%M"
+}
+
+
+cpu_temperature 0 {
+ format = "CPU %degrees °C"
+ path = "/sys/devices/platform/coretemp.0/hwmon/hwmon4/temp1_input"
+}