This commit is contained in:
2026-02-13 17:17:29 -08:00
parent 1751b5768b
commit 0d33436c77
3 changed files with 182 additions and 0 deletions

View File

@@ -1,8 +1,19 @@
import Quickshell
import Quickshell.Io
import "." as Shell
ShellRoot {
Shell.Wall {}
Shell.Launcher {}
Shell.Boateye {}
Shell.Lock {
id: lock
animate: true
}
IpcHandler {
target: "lock"
function instalock() {lock.animate = false; lock.locked = true}
function open() {lock.animate = true; lock.locked = true}
function close() {lock.locked = false}
}
}