import QtQuick import Quickshell import Quickshell.Wayland import Qt5Compat.GraphicalEffects import qs.Services import qs.Settings ShellRoot { property string wallpaperSource: WallpaperManager.currentWallpaper !== "" && !Settings.useSWWW ? WallpaperManager.currentWallpaper : "" PanelWindow { visible: wallpaperSource !== "" anchors { top: true bottom: true right: true left: true } color: "transparent" WlrLayershell.layer: WlrLayer.Background WlrLayershell.exclusionMode: ExclusionMode.Ignore WlrLayershell.namespace: "quickshell-overview" Image { id: bgImage anchors.fill: parent fillMode: Image.PreserveAspectCrop source: wallpaperSource cache: true smooth: true visible: wallpaperSource !== "" // Show the original for FastBlur input } FastBlur { anchors.fill: parent visible: wallpaperSource !== "" source: bgImage radius: 24 // Adjust blur strength as needed transparentBorder: true } } }