mirror of
https://github.com/celesrenata/end-4-flakes.git
synced 2026-06-07 02:59:26 -05:00
32 lines
824 B
QML
32 lines
824 B
QML
import qs.modules.common
|
|
import qs.modules.common.widgets
|
|
import qs
|
|
import Quickshell.Io
|
|
import Quickshell
|
|
|
|
QuickToggleButton {
|
|
id: root
|
|
toggled: false
|
|
buttonIcon: "coffee"
|
|
onClicked: {
|
|
if (toggled) {
|
|
root.toggled = false
|
|
Quickshell.execDetached(["pkill", "wayland-idle"]) // pkill doesn't accept too long names
|
|
} else {
|
|
root.toggled = true
|
|
Quickshell.execDetached([`${Directories.scriptPath}/wayland-idle-inhibitor.py`])
|
|
}
|
|
}
|
|
Process {
|
|
id: fetchActiveState
|
|
running: true
|
|
command: ["pidof", "wayland-idle-inhibitor.py"]
|
|
onExited: (exitCode, exitStatus) => {
|
|
root.toggled = exitCode === 0
|
|
}
|
|
}
|
|
StyledToolTip {
|
|
content: Translation.tr("Keep system awake")
|
|
}
|
|
}
|