From 507b41ce28d2ed280f55f986249b9963b1445031 Mon Sep 17 00:00:00 2001 From: Sijmen Schoon Date: Sat, 16 Feb 2019 16:57:03 +0100 Subject: [PATCH] i3status: add i3status --- config/i3status/config | 63 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 config/i3status/config diff --git a/config/i3status/config b/config/i3status/config new file mode 100644 index 0000000..d6276aa --- /dev/null +++ b/config/i3status/config @@ -0,0 +1,63 @@ +general { + colors = true + interval = 1 + + color_good = "#43A047" + color_degraded = "#FF9800" + color_bad = "#F44336" +} + +order += "disk /" +order += "wireless _first_" +order += "load" +order += "battery 0" +order += "battery 1" +order += "battery all" +order += "tztime local" + +wireless _first_ { + format_up = " %essid (%frequency, %quality, %bitrate)" + format_down = " down" +} + +tztime local { + format = "%Y-%m-%d %H:%M:%S " +} + +load { + format = " %1min %5min %15min" +} + +disk "/" { + format = " %used / %total used (%avail free)" +} + +battery 0 { + last_full_capacity = true + integer_battery_capacity = true + format = "%status %percentage" + + status_full = " " + status_chr = " " + status_unk = " " + status_bat = " " +} + +battery 1 { + last_full_capacity = true + integer_battery_capacity = true + format = "%status %percentage" + + status_full = " " + status_chr = " " + status_unk = " " + status_bat = " " +} + +battery all { + last_full_capacity = true + integer_battery_capacity = true + hide_seconds = true + + format = "%percentage (%consumption) %remainingh remaining" +}