Add lock and stuff

This commit is contained in:
2025-12-29 16:40:31 -08:00
parent 27dc27f914
commit 9e4198288b
7 changed files with 358 additions and 24 deletions

15
IpcToggle.qml Normal file
View File

@@ -0,0 +1,15 @@
import Quickshell.Io
IpcHandler {
target: target
required property var item
function close() {
item.close();
}
function open() {
item.open();
}
function toggle() {
item.visible ? close() : open()
}
}