greeter test

This commit is contained in:
Zacharias-Brohn
2026-03-18 23:39:37 +01:00
parent e65ec01b12
commit 6b482979fe
104 changed files with 7911 additions and 3 deletions
+31
View File
@@ -0,0 +1,31 @@
pragma ComponentBehavior: Bound
import Quickshell
import Quickshell.Wayland
import Quickshell.Io
import QtQuick
import qs.Components
ShellRoot {
id: root
GreeterState {
id: greeter
username: "zach"
}
GreeterSurface {
id: greeterSurface
greeter: greeter
}
Connections {
function onLastWindowClosed(): void {
Qt.quit();
}
target: Quickshell
}
}