diff --git a/src/shell.qml b/src/shell.qml index bb16e3e..5b28345 100644 --- a/src/shell.qml +++ b/src/shell.qml @@ -1,5 +1,3 @@ -//@ pragma UseQApplication - import Quickshell // for ShellRoot and PanelWindow diff --git a/src/windows/audioman/AudioManager.qml b/src/windows/audioman/AudioManager.qml index 05c4dd0..a4b2e32 100644 --- a/src/windows/audioman/AudioManager.qml +++ b/src/windows/audioman/AudioManager.qml @@ -25,7 +25,7 @@ PopupWindow { anchors.fill: parent onClicked: audioman.visible = false - BRectangle { + Rectangle { id: display x: lbar.width * 1.2 @@ -33,16 +33,17 @@ PopupWindow { width: 500 height: 600 - + color: "transparent" Image { id: background anchors.fill: parent source: Player.current?.trackArtUrl ?? "" Layout.alignment: Qt.AlignHCenter - visible: true + visible: false } MultiEffect { + id: image autoPaddingEnabled: false source: background anchors.fill: background @@ -51,6 +52,23 @@ PopupWindow { blurMultiplier: 2 blur: 1 brightness: -0.15 + maskEnabled: true + maskSource: mask + } + + Item { + id: mask + width: image.width + height: image.height + layer.enabled: true + visible: false + + Rectangle { + width: image.width + height: image.height + radius: 10 + color: "black" + } } ScrollView {