From bd53f1e12fee6c959039cb8d04b4c2310463096d Mon Sep 17 00:00:00 2001 From: coderkun Date: Sat, 7 Apr 2018 12:51:02 +0200 Subject: [PATCH] Add i3status config for laptop setup (with wifi and battery) --- i3status/laptop.config | 59 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 i3status/laptop.config diff --git a/i3status/laptop.config b/i3status/laptop.config new file mode 100644 index 0000000..390f9a8 --- /dev/null +++ b/i3status/laptop.config @@ -0,0 +1,59 @@ +# 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 { + output_format = "i3bar" + colors = true + interval = 20 +} + +order += "ipv6" +order += "wireless _first_" +order += "disk /" +order += "disk /home" +order += "battery 1" +order += "cpu_usage" +#order += "load" +order += "tztime local" + +wireless _first_ { + format_up = "W: (%quality at %essid) %ip" + format_down = "W: down" +} + +battery 1 { + hide_seconds = true + integer_battery_capacity = true + low_threshold = 10 + status_chr = "⚇" + status_bat = "⚡" + status_full = "☻" + format = "%status %percentage %remaining" + format_down = "No battery" +} + +tztime local { + #format = "%Y-%m-%d %H:%M:%S" + format = "%H:%M:%S %d.%m.%Y" +} + +cpu_usage { + format = "%usage" +} + +load { + format = "%1min" +} + +disk "/" { + format = "%avail" +} + +disk "/home" { + format = "%avail" +}