Initial commit, i3/x11 setup

This commit is contained in:
mrkmntal 2025-11-16 17:12:21 -05:00
commit 69ada937c0
4 changed files with 384 additions and 0 deletions

40
i3status/config Normal file
View file

@ -0,0 +1,40 @@
general {
colors = true
interval = 5
}
# Order of modules in the bar
order += "read_file hostname"
order += "disk /"
order += "memory"
order += "load"
order += "tztime local"
# Hostname shown as 🖥 debi3.lan
read_file hostname {
path = "/home/mrkmntal/.hostname_lan"
format = "🖥 %content"
}
# Disk space (root)
disk "/" {
format = "💾 %avail"
}
# Memory usage
memory {
format = "🧠 %used"
threshold_degraded = "1G"
format_degraded = "🧠 %available"
}
# CPU load (1-min load avg)
load {
format = "📈 %1min"
}
# Time
tztime local {
format = "🕒 %m-%d-%Y %H:%M:%S"
}