mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-08-05 13:57:36 +00:00
16 lines
515 B
QML
16 lines
515 B
QML
import QtQuick.Layouts
|
|
import Quickshell
|
|
import qs.Commons
|
|
import qs.Services
|
|
import qs.Widgets
|
|
|
|
NIconButtonHot {
|
|
property ShellScreen screen
|
|
|
|
icon: Settings.data.notifications.doNotDisturb ? "bell-off" : "bell"
|
|
hot: Settings.data.notifications.doNotDisturb
|
|
tooltipText: I18n.tr("quickSettings.notifications.tooltip.action")
|
|
onClicked: PanelService.getPanel("notificationHistoryPanel")?.toggle(this)
|
|
onRightClicked: Settings.data.notifications.doNotDisturb = !Settings.data.notifications.doNotDisturb
|
|
}
|