From 8ecb7282b94c0d99de7c62e08c535c566ca239cc Mon Sep 17 00:00:00 2001 From: bbedward Date: Wed, 14 Jan 2026 22:29:29 -0500 Subject: [PATCH] dankdash: fix weather open IPC fixes #1367 --- quickshell/DMSShellIPC.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/quickshell/DMSShellIPC.qml b/quickshell/DMSShellIPC.qml index 9c7185df..90aa061c 100644 --- a/quickshell/DMSShellIPC.qml +++ b/quickshell/DMSShellIPC.qml @@ -132,8 +132,11 @@ Item { case "media": root.dankDashPopoutLoader.item.currentTabIndex = 1; break; + case "wallpaper": + root.dankDashPopoutLoader.item.currentTabIndex = 2; + break; case "weather": - root.dankDashPopoutLoader.item.currentTabIndex = SettingsData.weatherEnabled ? 2 : 0; + root.dankDashPopoutLoader.item.currentTabIndex = SettingsData.weatherEnabled ? 3 : 0; break; default: root.dankDashPopoutLoader.item.currentTabIndex = 0;