summaryrefslogtreecommitdiff
path: root/.config/i3status
diff options
context:
space:
mode:
authoryuzu-eva <stevenhu@web.de>2024-03-09 01:59:27 +0100
committeryuzu-eva <stevenhu@web.de>2024-03-09 01:59:27 +0100
commit1c68684558c3062ff8fca66ee3dd870088fd56ee (patch)
tree380cce5fb22e27f74d5381382fdd39f4ea764e6b /.config/i3status
parentc5dcc86843b8f27628f901115eeda192d6260aca (diff)
parentf65e69f1f4b41785426bb830e73541aeb0d957e0 (diff)
Merge branch 'desktop'
merge into master, since the distinction is no longer neccessary
Diffstat (limited to '.config/i3status')
-rw-r--r--.config/i3status/config60
1 files changed, 60 insertions, 0 deletions
diff --git a/.config/i3status/config b/.config/i3status/config
new file mode 100644
index 0000000..903d43d
--- /dev/null
+++ b/.config/i3status/config
@@ -0,0 +1,60 @@
+# 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 br0"
+order += "ethernet tun0"
+order += "cpu_temperature 0"
+order += "disk /"
+order += "load"
+order += "memory"
+order += "volume master"
+order += "tztime local"
+
+ethernet br0 {
+ format_up = "E: %ip"
+ format_down = "E: down"
+}
+
+ethernet tun0 {
+ format_up = "VPN: %ip"
+ format_down = "VPN: down"
+}
+
+cpu_temperature 0 {
+ format = "CPU Temp: %degrees °C"
+ path = "/sys/devices/platform/nct6775.2592/hwmon/hwmon3/temp1_input"
+}
+
+disk "/" {
+ format = "Porn Folder: %used"
+}
+
+load {
+ format = "Load: %1min"
+}
+
+memory {
+ format = "Memory: %used/%total"
+ threshold_degraded = "3GB"
+ format_degraded = "MEMORY < %available"
+}
+
+volume master {
+ format = "♪: %volume"
+ format_muted = "♪: muted (%volume)"
+ device = "default"
+}
+
+tztime local {
+ format = "%A, %Y-%m-%d %H:%M "
+}