From 8d0f256f748dd7df3d2ad310c46ec1d4fb4915a7 Mon Sep 17 00:00:00 2001 From: bbedward Date: Fri, 20 Mar 2026 10:04:55 -0400 Subject: [PATCH] fix: missing appID references --- quickshell/Modules/DankBar/Widgets/AppsDock.qml | 2 +- quickshell/Modules/DankBar/Widgets/RunningApps.qml | 2 +- quickshell/Modules/DankBar/Widgets/WorkspaceSwitcher.qml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/quickshell/Modules/DankBar/Widgets/AppsDock.qml b/quickshell/Modules/DankBar/Widgets/AppsDock.qml index 901555d2..f5b3a760 100644 --- a/quickshell/Modules/DankBar/Widgets/AppsDock.qml +++ b/quickshell/Modules/DankBar/Widgets/AppsDock.qml @@ -990,7 +990,7 @@ BasePill { break; } - const shouldHidePin = modelData.appId === "org.quickshell"; + const shouldHidePin = modelData.appId === "org.quickshell" || modelData.appId === "com.danklinux.dms"; const moddedId = Paths.moddedAppId(modelData.appId); const desktopEntry = moddedId ? DesktopEntries.heuristicLookup(moddedId) : null; diff --git a/quickshell/Modules/DankBar/Widgets/RunningApps.qml b/quickshell/Modules/DankBar/Widgets/RunningApps.qml index bfdd3d6b..358b877f 100644 --- a/quickshell/Modules/DankBar/Widgets/RunningApps.qml +++ b/quickshell/Modules/DankBar/Widgets/RunningApps.qml @@ -550,7 +550,7 @@ BasePill { mipmap: true asynchronous: true visible: status === Image.Ready - layer.enabled: appId === "org.quickshell" + layer.enabled: appId === "org.quickshell" || appId === "com.danklinux.dms" layer.smooth: true layer.mipmap: true layer.effect: MultiEffect { diff --git a/quickshell/Modules/DankBar/Widgets/WorkspaceSwitcher.qml b/quickshell/Modules/DankBar/Widgets/WorkspaceSwitcher.qml index c6ecd9bb..e969561d 100644 --- a/quickshell/Modules/DankBar/Widgets/WorkspaceSwitcher.qml +++ b/quickshell/Modules/DankBar/Widgets/WorkspaceSwitcher.qml @@ -286,7 +286,7 @@ Item { const key = isActiveWs || !SettingsData.groupWorkspaceApps ? `${moddedId}_${i}` : moddedId; if (!byApp[key]) { - const isQuickshell = keyBase === "org.quickshell"; + const isQuickshell = keyBase === "org.quickshell" || keyBase === "com.danklinux.dms"; const isSteamApp = Paths.isSteamApp(moddedId); const desktopEntry = DesktopEntries.heuristicLookup(moddedId); const icon = Paths.getAppIcon(moddedId, desktopEntry);