Files
illogical-impulse/.config/quickshell/modules/sidebarRight/quickToggles/IdleInhibitor.qml
T
2025-04-24 20:28:22 +02:00

21 lines
510 B
QML

import "root:/modules/common"
import "root:/modules/common/widgets"
import "../"
import Quickshell.Io
import Quickshell
QuickToggleButton {
toggled: idleInhibitor.running
buttonIcon: "coffee"
onClicked: {
idleInhibitor.running = !idleInhibitor.running
}
Process {
id: idleInhibitor
command: ["bash", "-c", "${XDG_CONFIG_HOME:-$HOME/.config}/quickshell/scripts/wayland-idle-inhibitor.py"]
}
StyledToolTip {
content: qsTr("Keep system awake")
}
}