From 9c7fcc603776286cdb60c209548b4319d5fb96c1 Mon Sep 17 00:00:00 2001 From: Plom Heller Date: Sat, 19 Sep 2026 14:07:05 +0200 Subject: [PATCH] Use generic device type rather than specific device name for network status bar segment. --- home/user/.config/sway/status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/user/.config/sway/status.py b/home/user/.config/sway/status.py index 2d2949a..d57cde9 100755 --- a/home/user/.config/sway/status.py +++ b/home/user/.config/sway/status.py @@ -151,7 +151,7 @@ def info_network( return addr return '?' - info = f'{dev_ip()} {device}' + info = f'{dev_ip()} {dev_type}' if dev_type == 'wifi': for ssid, signal in ( row[1:] for row in nmcli_fields( -- 2.30.2