From f894d338fc508ef9ca13002808702afe9ee6e120 Mon Sep 17 00:00:00 2001 From: mihem <46907494+mihem@users.noreply.github.com> Date: Sat, 11 Apr 2026 18:01:21 +0200 Subject: [PATCH] feat(running-apps): stronger active app highlight + indicator bar (#2190) The focused app background used 20% primary opacity which was barely visible. Increase to 45% to make the active window unambiguous at a glance. --- quickshell/Modules/DankBar/Widgets/RunningApps.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickshell/Modules/DankBar/Widgets/RunningApps.qml b/quickshell/Modules/DankBar/Widgets/RunningApps.qml index 6ca6d3e6..ae58802e 100644 --- a/quickshell/Modules/DankBar/Widgets/RunningApps.qml +++ b/quickshell/Modules/DankBar/Widgets/RunningApps.qml @@ -271,7 +271,7 @@ BasePill { radius: Theme.cornerRadius color: { if (isFocused) { - return mouseArea.containsMouse ? Theme.primarySelected : Theme.withAlpha(Theme.primary, 0.2); + return mouseArea.containsMouse ? Theme.primarySelected : Theme.withAlpha(Theme.primary, 0.45); } return mouseArea.containsMouse ? BlurService.hoverColor(Theme.widgetBaseHoverColor) : "transparent"; } @@ -526,7 +526,7 @@ BasePill { radius: Theme.cornerRadius color: { if (isFocused) { - return mouseArea.containsMouse ? Theme.primarySelected : Theme.withAlpha(Theme.primary, 0.2); + return mouseArea.containsMouse ? Theme.primarySelected : Theme.withAlpha(Theme.primary, 0.45); } return mouseArea.containsMouse ? BlurService.hoverColor(Theme.widgetBaseHoverColor) : "transparent"; }