26 lines
334 B
QML
26 lines
334 B
QML
import QtQuick
|
|
import Quickshell
|
|
|
|
ShellRoot {
|
|
LockContext {
|
|
id: lockContext
|
|
onUnlocked: Qt.quit();
|
|
}
|
|
|
|
FloatingWindow {
|
|
LockSurface {
|
|
anchors.fill: parent
|
|
context: lockContext
|
|
}
|
|
}
|
|
|
|
// exit the example if the window closes
|
|
Connections {
|
|
target: Quickshell
|
|
|
|
function onLastWindowClosed() {
|
|
Qt.quit();
|
|
}
|
|
}
|
|
}
|