Files
z-bar-qt/Greeter/UserImage.qml
T
Zacharias-Brohn 3c46256a9f test script
2026-03-20 21:10:08 +01:00

24 lines
374 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: "/etc/zshell-greeter/images/face"
sourceSize.height: parent.height
sourceSize.width: parent.width
}
}
}