mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-12 11:59:58 -05:00
16 lines
268 B
QML
16 lines
268 B
QML
import qs.modules.common.widgets
|
|
import qs.services
|
|
|
|
QuickToggleButton {
|
|
id: root
|
|
toggled: Idle.inhibit
|
|
buttonIcon: "coffee"
|
|
onClicked: {
|
|
Idle.toggleInhibit()
|
|
}
|
|
StyledToolTip {
|
|
text: Translation.tr("Keep system awake")
|
|
}
|
|
|
|
}
|