From d21fd29dff031df7a2cf61bae00e6d8c29249f0e Mon Sep 17 00:00:00 2001 From: Emma Nora Theuer Date: Mon, 2 Sep 2024 16:38:52 +0200 Subject: [PATCH] Fix bug that always resulted in a FileNotFoundError --- src/wallman_systray.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallman_systray.py b/src/wallman_systray.py index cfdee9f..f50ca60 100644 --- a/src/wallman_systray.py +++ b/src/wallman_systray.py @@ -34,7 +34,7 @@ def on_quit(icon, item, callback): icon.stop() -chdir("/etc/wallman/icons/systrayIcon") +chdir("/etc/wallman/icons/") try: icon_image = Image.open("systrayIcon.jpg") except FileNotFoundError: