Files
monoshell/shell.qml

21 lines
450 B
QML

import Quickshell
import Quickshell.Io
import "." as Shell
ShellRoot {
Shell.Wall {}
Shell.Launcher {}
Shell.TopBar {}
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}
}
}