quickshell-examples/lockscreen/test.qml

19 lines
217 B
QML
Raw Normal View History

2024-03-08 11:42:49 +00:00
import QtQuick
import Quickshell
ShellRoot {
AuthContext {
id: authContext
onUnlocked: Qt.quit()
}
FloatingWindow {
color: "#303030"
Lockscreen {
anchors.fill: parent
context: authContext
}
}
}