From 0beccd69e86f894403d276583ee60e76debedc78 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Mon, 9 Jun 2025 17:47:57 +0200 Subject: [PATCH] overview: adjust hover/click colors --- .config/quickshell/modules/overview/OverviewWindow.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.config/quickshell/modules/overview/OverviewWindow.qml b/.config/quickshell/modules/overview/OverviewWindow.qml index 6436120e2..17a3b4bc2 100644 --- a/.config/quickshell/modules/overview/OverviewWindow.qml +++ b/.config/quickshell/modules/overview/OverviewWindow.qml @@ -68,6 +68,7 @@ Item { // Window } ScreencopyView { + id: windowPreview anchors.fill: parent captureSource: GlobalStates.overviewOpen ? root.toplevel : null live: true @@ -76,7 +77,7 @@ Item { // Window anchors.fill: parent radius: Appearance.rounding.windowRounding * root.scale color: pressed ? Appearance.colors.colLayer2Active : hovered ? Appearance.colors.colLayer2Hover : Appearance.colors.colLayer2 - opacity: pressed ? 0.3 : hovered ? 0.2 : 0 + opacity: pressed ? 0.5 : hovered ? 0.3 : 0 border.color : ColorUtils.transparentize(Appearance.m3colors.m3outline, 0.9) border.width : 1 }