From 0f454dd3a167ddb1a2a6a882c1a51dc4fcfd06a0 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Fri, 21 Jan 2022 15:58:23 +0300 Subject: [PATCH] sway/status.py: fix undefined variable --- sway/status.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sway/status.py b/sway/status.py index a1e216b..f26011a 100755 --- a/sway/status.py +++ b/sway/status.py @@ -55,6 +55,7 @@ def refresh(): volume_icon = "🔇" except Exception: volume_level = "" + volume_icon = "" volume_status = f"{volume_level} {volume_icon}"