nixnew/modules/hyprland/lockscreen/test.qml

22 lines
265 B
QML
Raw Normal View History

2024-03-08 10:30:44 +00:00
import QtQuick
import Quickshell
ShellRoot {
AuthContext {
id: authContext
onSuccess: Qt.quit()
}
FloatingWindow {
Image {
anchors.fill: parent
source: "../1920x1080.png"
}
Lockscreen {
anchors.fill: parent
context: authContext
}
}
}