From b776d21875ab8818c2da5ecd5ddbe0609de13517 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Sat, 26 Dec 2020 17:38:49 +0530 Subject: [PATCH] i3status: Add a configuration for i3status This is copied over from Manjaro i3's community edition. --- i3status/.config/i3status/config | 76 ++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 i3status/.config/i3status/config diff --git a/i3status/.config/i3status/config b/i3status/.config/i3status/config new file mode 100644 index 0000000..3a4507d --- /dev/null +++ b/i3status/.config/i3status/config @@ -0,0 +1,76 @@ +# 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 + color_good = "#2AA198" + color_bad = "#586E75" + color_degraded = "#DC322F" +} + +# order += "ipv6" +order += "cpu_usage" +order += "disk /" +# order += "disk /home" +order += "wireless _first_" +order += "ethernet _first_" +order += "battery all" +# order += "load" +order += "memory" +order += "tztime local" + +cpu_usage { + format = " cpu %usage " +} + +load { + format = " load %1min " + # max_threshold = 0.3 +} + +disk "/" { + # format = " hdd %avail " + format = " ⛁ %avail " +} + +ethernet _first_ { +# if you use %speed, i3status requires root privileges + format_up = " lan: %ip %speed " + format_down = " no lan " +} + +battery all { + # format = "%status %percentage %remaining %emptytime" + format = " %status %percentage" + format_down = "No battery" + last_full_capacity = true + integer_battery_capacity = true + # status_chr = "" + status_chr = "⚡" + # status_bat = "bat" + # status_bat = "☉" + status_bat = "" + # status_unk = "?" + status_unk = "" + # status_full = "" + status_full = "☻" + low_threshold = 15 + threshold_type = time +} + +memory { + format = "%used | %available" + threshold_degraded = "1G" + format_degraded = "MEMORY < %available" +} + +tztime local { + # format = "%Y-%m-%d %H:%M:%S" + format = " %d.%m. %H:%M " +}