dotfiles/i3status/config

50 lines
763 B
Text
Raw Normal View History

2025-11-16 17:12:21 -05:00
general {
colors = true
interval = 5
}
# Order of modules in the bar
order += "read_file hostname"
order += "read_file battery"
2025-11-16 17:12:21 -05:00
order += "disk /"
order += "memory"
order += "load"
order += "tztime local"
# battery usage
read_file battery {
path = "/tmp/battery_percent"
format = "🔋 %content"
}
2025-11-16 17:12:21 -05:00
# 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"
}