last 7 months of qs changes
This commit is contained in:
parent
2c64563ade
commit
4b90113a54
103 changed files with 3467 additions and 1415 deletions
38
modules/user/modules/quickshell/shell/greeter.qml
Normal file
38
modules/user/modules/quickshell/shell/greeter.qml
Normal file
|
@ -0,0 +1,38 @@
|
|||
import QtQuick
|
||||
import Quickshell
|
||||
import Quickshell.Wayland
|
||||
import Quickshell.Services.Greetd
|
||||
import ".."
|
||||
import "lock"
|
||||
|
||||
ShellRoot {
|
||||
GreeterContext {
|
||||
id: context
|
||||
|
||||
onLaunch: {
|
||||
lock.locked = false;
|
||||
Greetd.launch(["hyprland"]);
|
||||
}
|
||||
}
|
||||
|
||||
WlSessionLock {
|
||||
id: lock
|
||||
locked: true
|
||||
|
||||
WlSessionLockSurface {
|
||||
id: lockSurface
|
||||
|
||||
BackgroundImage {
|
||||
id: backgroundImage
|
||||
anchors.fill: parent
|
||||
screen: lockSurface.screen
|
||||
asynchronous: true
|
||||
}
|
||||
|
||||
LockContent {
|
||||
anchors.fill: parent
|
||||
state: context.state
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue