From a053e28826969d9083c73a311c80e74a3eaa9a3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Fri, 8 Sep 2017 10:39:59 +0200 Subject: [PATCH] Update py3status --- i3/i3status.conf | 52 +++++++++++++++++++++++++++++------------------- 1 file changed, 31 insertions(+), 21 deletions(-) diff --git a/i3/i3status.conf b/i3/i3status.conf index 414f199..554c388 100644 --- a/i3/i3status.conf +++ b/i3/i3status.conf @@ -7,47 +7,57 @@ # If the above line is not correctly displayed, fix your editor first! general { - interval = 5 + interval = 1 # color = '#FFFFFF' # color_good = '#00FF00' # color_bad = '#FF0000' # color_degraded = '#FFFF00' color = '#FFFFFF' color_good = '#FFFFFF' - color_bad = '#FFFFFF' - color_degraded = '#FFFFFF' - + color_bad = '#F92672' + color_degraded = '#F4Bf75' } + +order += volume_status +order += spotify order += "wifi" -order += "sysdata" -# order += "exchange_rate nzdollar" +order += online_status order += "battery_level 0" order += "clock" battery_level 0 { - format = "{percent}%" + format = "  {percent}% " notification = true + threshold_full = 95 } clock { format = ["{Local}", "{NZ}"] - format_time = "[{name}] %a %Y-%m-%d %H:%M:%S" -} - -# exchange_rate nzdollar { -# base = "EUR" -# cache_timeout = 3600 -# format = "{NZD} NZ$" -# } - -sysdata { - format = "C {cpu_usage}% {cpu_temp} M {mem_used}G ({mem_used_percent}%)" - precision = 1 + format_time = "  [{name}] %a %Y-%m-%d %H:%M:%S " } wifi { - format_down = "W: down" - format_up = "W: {signal_percent} {ssid}" + bitrate_bad = 1 + bitrate_degraded = 1 + format_down = "  down " + format_up = "  {signal_percent} {ssid} " } +spotify { + format = "  {title} ({artist}) - {time} " + format_down = "no Spotify" +} + +online_status { + format = " {icon} " +} + +volume_status { + device = "12" + cache_timeout = 1 + format = "  {percentage}% " + format_muted = "  mute " + thresholds = [] + command = "pactl" +}