From 3c20e9e203a235f502aeae93b371176839987782 Mon Sep 17 00:00:00 2001 From: bbedward Date: Thu, 30 Oct 2025 22:07:19 -0400 Subject: [PATCH] dankdash: show mangowc/sway when on one --- Modules/DankDash/Overview/UserInfoCard.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Modules/DankDash/Overview/UserInfoCard.qml b/Modules/DankDash/Overview/UserInfoCard.qml index d8ad193d..6c55b4d3 100644 --- a/Modules/DankDash/Overview/UserInfoCard.qml +++ b/Modules/DankDash/Overview/UserInfoCard.qml @@ -58,6 +58,9 @@ Card { text: { if (CompositorService.isNiri) return "on niri" if (CompositorService.isHyprland) return "on Hyprland" + // technically they might not be on mangowc, but its what we support in the docs + if (CompositorService.isDwl) return "on MangoWC" + if (CompositorService.isSway) return "on Sway" return "" } font.pixelSize: Theme.fontSizeSmall