nixnew/modules/hyprland/lockscreen/test.qml
2024-03-08 02:30:44 -08:00

22 lines
265 B
QML

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
}
}
}