Files
z-bar-qt/Modules/Lock/UserImage.qml
T
Zacharias-Brohn e35f57e42c profile pic crop
2025-12-05 19:50:31 +01:00

25 lines
378 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.PreserveAspectCrop
source: `${Paths.home}/.face`
}
}
}