mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-08-06 22:37:06 +00:00
17 lines
520 B
QML
17 lines
520 B
QML
import QtQuick.Layouts
|
|
import Quickshell
|
|
import qs.Commons
|
|
import qs.Services.System
|
|
import qs.Services.UI
|
|
import qs.Widgets
|
|
|
|
NIconButtonHot {
|
|
property ShellScreen screen
|
|
|
|
icon: NotificationService.doNotDisturb ? "bell-off" : "bell"
|
|
hot: NotificationService.doNotDisturb
|
|
tooltipText: I18n.tr("quickSettings.notifications.tooltip.action")
|
|
onClicked: PanelService.getPanel("notificationHistoryPanel", screen)?.toggle(this)
|
|
onRightClicked: NotificationService.doNotDisturb = !NotificationService.doNotDisturb
|
|
}
|