Files
z-bar-qt/Daemons/LidService.qml
T
AramJonghu c91b53fbaa
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 12s
Python / lint-format (pull_request) Successful in 24s
Python / test (pull_request) Successful in 50s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m7s
QTQuick
2026-06-02 00:03:30 +02:00

18 lines
209 B
QML

import Quickshell
import ZShell
import QtQuick
Scope {
id: root
required property var lock
Connections {
function onLidClosing(): void {
root.lock.lock.locked = true;
}
target: LidWatcher
}
}