lux-shell/modules/bar/components/Caffeine.qml
Benjamin Palko 8130cb1bdd annoying
2025-09-06 22:47:36 -04:00

15 lines
326 B
QML

import qs.components
import qs.config
import qs.services
StyledIconButton {
id: root
border.width: 2
border.color: Caffeine.enabled ? Styling.theme.secondary : root.hovered ? Styling.theme.primary : Styling.theme.base200
text: Styling.lucide.icons.coffee
onClicked: {
Caffeine.toggle();
}
}