From 48814c5d42e12da6e8aaa8a61e06de17263015e6 Mon Sep 17 00:00:00 2001 From: dissimulo Date: Tue, 30 Jun 2026 16:57:22 -0700 Subject: [PATCH] =?UTF-8?q?tmux-net:=20trailing=20space=20after=20the=20?= =?UTF-8?q?=E2=9C=95=20offline=20glyph=20for=20status-bar=20padding?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .local/bin/tmux-net | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.local/bin/tmux-net b/.local/bin/tmux-net index 0dd6e558..669f552b 100755 --- a/.local/bin/tmux-net +++ b/.local/bin/tmux-net @@ -12,7 +12,7 @@ local_ip=$("$HOME/.local/bin/tmux-ip" 2>/dev/null || true) vpn_ip=$("$HOME/.local/bin/tmux-vpn-ip" 2>/dev/null || true) if [ -z "${local_ip:-}" ] && [ -z "${vpn_ip:-}" ]; then - printf '\xe2\x9c\x95\n' # ✕ no active connection + printf '\xe2\x9c\x95 \n' # ✕ no active connection (trailing space for padding) elif [ -n "${vpn_ip:-}" ]; then printf '\xe2\x8c\x82 %s / \xe2\x87\xa1 %s\n' "${local_ip:-}" "$vpn_ip" else