mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-06 05:25:41 -05:00
19 lines
332 B
QML
19 lines
332 B
QML
import QtQuick
|
|
import Quickshell
|
|
import Quickshell.Wayland
|
|
import Quickshell.Services.Greetd
|
|
|
|
WlSessionLockSurface {
|
|
id: root
|
|
|
|
required property WlSessionLock lock
|
|
|
|
color: "transparent"
|
|
|
|
GreeterContent {
|
|
anchors.fill: parent
|
|
screenName: root.screen?.name ?? ""
|
|
sessionLock: root.lock
|
|
}
|
|
}
|