forked from Shinonome/dots-hyprland
17 lines
278 B
QML
17 lines
278 B
QML
import qs.modules.common.widgets
|
|
import qs
|
|
import qs.services
|
|
|
|
QuickToggleButton {
|
|
id: root
|
|
toggled: Idle.inhibit
|
|
buttonIcon: "coffee"
|
|
onClicked: {
|
|
Idle.toggleInhibit()
|
|
}
|
|
StyledToolTip {
|
|
text: Translation.tr("Keep system awake")
|
|
}
|
|
|
|
}
|