forked from Shinonome/dots-hyprland
5d1a9b1e9c
Co-Authored-By: Vague Syntax <173799252+vaguesyntax@users.noreply.github.com>
19 lines
436 B
QML
19 lines
436 B
QML
import qs
|
|
import qs.modules.common
|
|
import qs.services
|
|
import QtQuick
|
|
import Quickshell
|
|
|
|
AndroidQuickToggleButton {
|
|
id: root
|
|
|
|
name: Translation.tr("Notifications")
|
|
statusText: toggled ? Translation.tr("Show") : Translation.tr("Silent")
|
|
toggled: !Notifications.silent
|
|
buttonIcon: toggled ? "notifications_active" : "notifications_paused"
|
|
|
|
onClicked: {
|
|
Notifications.silent = !Notifications.silent;
|
|
}
|
|
}
|