From 67aefab5668e57799521cf787d6fe70d5d097aa1 Mon Sep 17 00:00:00 2001 From: Ian Adam Naval Date: Mon, 23 Mar 2015 06:44:53 -0400 Subject: [PATCH] More improvements for ranger. Use smart borders, and only display the SSID. --- i3/i3.dotfile/config | 1 + i3/i3.dotfile/status.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/i3/i3.dotfile/config b/i3/i3.dotfile/config index 1a2b387..c95f645 100644 --- a/i3/i3.dotfile/config +++ b/i3/i3.dotfile/config @@ -198,6 +198,7 @@ bindsym $mod+r mode "resize" new_window 1pixel new_float normal gaps inner 8 +smart_borders on #for_window [instance="terminator"] border none #for_window [instance="urxvt"] border none diff --git a/i3/i3.dotfile/status.py b/i3/i3.dotfile/status.py index a10e2b2..a0737d6 100644 --- a/i3/i3.dotfile/status.py +++ b/i3/i3.dotfile/status.py @@ -47,7 +47,7 @@ status.register("alsa", format="♪{volume}%{muted}", card=1, color=COLORS['White'], - color_muted=COLORS['Red'], + color_muted=COLORS['Yellow'], muted="M") if os.path.exists("/sys/class/power_supply/BAT0"): @@ -83,7 +83,7 @@ if os.path.exists("/sys/class/power_supply/BAT1"): if os.path.exists("/sys/class/net/wlp3s0"): status.register("wireless", interface="wlp3s0", - format_up="{essid} {quality:.0f}%", + format_up="{essid}", color_up=COLORS['Green'], color_down=COLORS['Red'])