diff options
| author | Marc Vertes <mvertes@free.fr> | 2020-01-13 14:42:33 +0100 |
|---|---|---|
| committer | Marc Vertes <mvertes@free.fr> | 2020-01-13 14:42:33 +0100 |
| commit | 1551a4228a8240754e901006404a0a0f16f12dd4 (patch) | |
| tree | 0270f6614847d11cf7884a214a2e3ad049ba3753 /.i3status.conf | |
| parent | 8a5fa4280578a11fddd2e29f40f9e8658ff0b9a8 (diff) | |
update
Diffstat (limited to '.i3status.conf')
| -rw-r--r-- | .i3status.conf | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/.i3status.conf b/.i3status.conf new file mode 100644 index 0000000..897ff5e --- /dev/null +++ b/.i3status.conf @@ -0,0 +1,78 @@ +# 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 += "ipv6" +order += "wireless _first_" +#order += "ethernet _first_" +order += "battery all" +order += "disk /" +order += "disk /home" +order += "load" +order += "memory" +order += "cpu_temperature 0" +order += "tztime local" + +wireless _first_ { + format_up = "W: %essid %quality %ip" + format_down = "W: down" +} + +#ethernet _first_ { +# format_up = "E: %ip (%speed)" +# format_down = "E: down" +#} + +battery all { + integer_battery_capacity = true + format = "%status %percentage %remaining" + threshold_type = "percentage" + low_threshold = 10 +} + +#battery 0 { +# format = "%status %percentage %remaining %emptytime" +# format_down = "No battery" +# status_chr = "CHR" +# status_bat = "BAT" +# status_unk = "UNK" +# status_full = "FULL" +# path = "/sys/class/power_supply/BAT%d/uevent" +# low_threshold = 10 +#} + +disk "/" { + format = "avail: / %avail" +} + +disk "/home" { + format = "/home %avail" +} + +load { + format = "load: %1min" +} + +memory { + format = "mem: %used | %available" + threshold_degraded = "1G" + format_degraded = "MEMORY < %available" +} + +cpu_temperature 0 { + format = "T: %degrees °C" + path = "/sys/class/hwmon/hwmon0/temp1_input" +} + +tztime local { + format = "%Y-%m-%d %H:%M:%S" +} |
