lockscreen bg blur fixes

This commit is contained in:
Zacharias-Brohn
2025-12-05 15:40:17 +01:00
parent dad3fa6bbf
commit 563d881d6f
5 changed files with 203 additions and 75 deletions
+24
View File
@@ -0,0 +1,24 @@
import Quickshell
import Quickshell.Widgets
import QtQuick
import qs.Paths
Item {
id: root
ClippingRectangle {
radius: 1000
anchors.fill: parent
Image {
id: userImage
anchors.fill: parent
sourceSize.width: parent.width
sourceSize.height: parent.height
asynchronous: true
fillMode: Image.PreserveAspectFit
source: `${Paths.home}/.face`
}
}
}