feat: store caffeinated status in a file to resume behaviour after reboot or similar
This commit is contained in:
parent
8b27f1f47d
commit
20d66304f8
1 changed files with 32 additions and 1 deletions
|
@ -7,9 +7,40 @@ Singleton {
|
||||||
id: inhibitor
|
id: inhibitor
|
||||||
|
|
||||||
property bool active: false
|
property bool active: false
|
||||||
|
readonly property string caffeinatedLock: `${Quickshell.env("XDG_RUNTIME_DIR")}/qs-inhibitor`
|
||||||
|
|
||||||
function toggle() {
|
function toggle() {
|
||||||
active = !active;
|
if (!active) {
|
||||||
|
create.running = true;
|
||||||
|
} else {
|
||||||
|
removing.running = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Process {
|
||||||
|
running: true
|
||||||
|
command: ["stat", inhibitor.caffeinatedLock]
|
||||||
|
onExited: (code, status) => {
|
||||||
|
inhibitor.active = !code;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Process {
|
||||||
|
id: create
|
||||||
|
running: false
|
||||||
|
command: ["touch", inhibitor.caffeinatedLock]
|
||||||
|
onExited: (code, status) => {
|
||||||
|
inhibitor.active = !code;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Process {
|
||||||
|
id: removing
|
||||||
|
running: false
|
||||||
|
command: ["rm", inhibitor.caffeinatedLock]
|
||||||
|
onExited: (code, status) => {
|
||||||
|
inhibitor.active = code != 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Process {
|
Process {
|
||||||
|
|
Loading…
Add table
Reference in a new issue