Files
z-bar-qt/Modules/Lock/UserImage.qml
T
2025-12-05 15:40:17 +01:00

25 lines
377 B
QML

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`
}
}
}