Add simple i3status config and fix default tint2rc

This commit is contained in:
natemaia
2019-10-28 12:44:57 -07:00
parent a5286f9529
commit a93784f2be
3 changed files with 38 additions and 2 deletions

View File

@ -0,0 +1,35 @@
# i3status configuration file.
# see "man i3status" for documentation.
general {
colors = true
interval = 5
}
order += "battery all"
order += "disk /"
order += "load"
order += "memory"
order += "tztime local"
battery all {
format = "%status %percentage %remaining"
}
disk "/" {
format = "%avail"
}
load {
format = "%1min"
}
memory {
format = "%used | %available"
threshold_degraded = "1G"
format_degraded = "MEMORY < %available"
}
tztime local {
format = "%T"
}