Files
z-bar-qt/Greeter/UserImage.qml
T
Zacharias-Brohn c1efd7dacc test
2026-03-19 00:14:09 +01:00

24 lines
378 B
QML

import Quickshell
import Quickshell.Widgets
import QtQuick
Item {
id: root
ClippingRectangle {
anchors.fill: parent
radius: 1000
Image {
id: userImage
anchors.fill: parent
asynchronous: true
fillMode: Image.PreserveAspectCrop
source: `${Quickshell.shellDir}/images/.face`
sourceSize.height: parent.height
sourceSize.width: parent.width
}
}
}