From c2f34a4c05307812e66d0ff4db68ab96e647d215 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Atoch?= Date: Wed, 30 Jul 2025 13:18:24 -0400 Subject: [PATCH] Using MultiEffect blurs instead of the fast one --- Widgets/Overview.qml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Widgets/Overview.qml b/Widgets/Overview.qml index 2e63c6c..c23b79f 100644 --- a/Widgets/Overview.qml +++ b/Widgets/Overview.qml @@ -1,4 +1,5 @@ import QtQuick +import QtQuick.Effects import Quickshell import Quickshell.Wayland import Qt5Compat.GraphicalEffects @@ -35,19 +36,20 @@ ShellRoot { smooth: true visible: wallpaperSource !== "" // Show the original for FastBlur input } - FastBlur { + MultiEffect { + id: overviewBgBlur anchors.fill: parent - visible: wallpaperSource !== "" source: bgImage - radius: 18 // Adjust blur strength as needed - transparentBorder: true + blurEnabled: true + blur: 0.48 // controls blur strength (0 to 1) + blurMax: 128 // max blur radius in pixels } Rectangle { anchors.fill: parent color: Qt.rgba( Theme.backgroundPrimary.r, Theme.backgroundPrimary.g, - Theme.backgroundPrimary.b, 0.6) + Theme.backgroundPrimary.b, 0.5) } } }