config: add initial config for i3 and i3status

This commit is contained in:
Thomas Preisner 2019-09-24 16:40:13 +02:00
parent 57fa1af803
commit 428bfa9a2f
2 changed files with 224 additions and 0 deletions

39
config/i3status/config Normal file
View file

@ -0,0 +1,39 @@
# 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 += "cpu_temperature 0"
order += "cpu_usage"
order += "battery all"
order += "tztime local"
cpu_temperature 0 {
format = " %degrees°C"
}
cpu_usage {
format = " %usage"
}
battery all {
format = "%status %percentage %remaining"
status_chr = " CHR"
status_bat = " BAT"
status_unk = " UNK"
status_full = " FULL"
low_threshold = 10
}
tztime local {
format = " %Y-%m-%d %H:%M"
}