commit 7c61b2f462597261a20a82d10c28e08f0de7f149 parent 6f469f27b873b187fb1c70266f2ca8cbb13c2178 Author: klewer-martin <martin.cachari@gmail.com> Date: Wed, 10 Feb 2021 22:15:20 -0300 Update on i3 status config file; Diffstat:
A | .config/config | | | 120 | +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
1 file changed, 120 insertions(+), 0 deletions(-) diff --git a/.config/config b/.config/config @@ -0,0 +1,120 @@ + + + + +# 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 = 1 + separator = "" +} + +#order += "uptime" +order += "wireless _first_" +#order += "ethernet _first_" +#order += "battery all" +order += "volume master" +#order += "cpu_usage" +order += "memory" +order += "battery 0" +#order += "disk /" +#order += "load" +order += "tztime local" +order += "tztime buenos_aires" +#order += "tztime berlin" +#order += "read_file uptime" + + +#wireless _first_ { +# format_up = " 📶: %essid" +# format_down = " 📶: down" +#} + +wireless _first_ { + format_up = " 📡: %essid" + format_down = "📡 :down" +} + + +ethernet _first_ { +# format_up = "E: %ip (%speed)" + format_up = " E: Connected" + format_down = " E: unpluggled" +} + +battery all { + format = "%status %percentage %remaining" +} + +battery 0 { + format = "%status %percentage %remaining" + format_down = " No battery" +# status_chr = " CHR" + status_chr = "⚡:" + status_bat = "🔋:" + status_unk = "? UNK" + status_full = "🔌:" + path = "/sys/class/power_supply/BAT%d/uevent" + low_threshold = 20 + threshold_type = percentage + last_full_capacity = true + integer_battery_capacity = true +} + + +#disk "/" { +# format = "%avail" +#} + +#load { +# format = "%1min" +#} + +memory { + format = "🧮: %used" +# threshold_degraded = "1G" +# format_degraded = "MEMORY < %available" +} + +#tztime local { +# format = "📅: %a %e %b 🕒: %H:% " +#} + +volume master { + format = "🔊: %volume" + format_muted = "🔇: %volume" + device = "pulse" + color_degraded = "#FF9900" +} + +#uptime { +# format = "%content" +# path = "/proc/uptime" +#} + +tztime local { + format = "📅: %a %e %b" +} +# +tztime buenos_aires { + format = " 🕒: %H:%M " +} + +tztime berlin { + format = "" +} + +read_file uptime { + path = "/proc/uptime" +} + +cpu_usage { + format = " 📟: %usage" +}