mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-09 00:39:27 -05:00
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")
|
|
}
|
|
|
|
}
|