diff --git a/dots/.config/quickshell/ii/modules/ii/notificationPopup/NotificationPopup.qml b/dots/.config/quickshell/ii/modules/ii/notificationPopup/NotificationPopup.qml index 8d48b5e56..669e3971e 100644 --- a/dots/.config/quickshell/ii/modules/ii/notificationPopup/NotificationPopup.qml +++ b/dots/.config/quickshell/ii/modules/ii/notificationPopup/NotificationPopup.qml @@ -14,7 +14,7 @@ Scope { PanelWindow { id: root visible: (Notifications.popupList.length > 0) && !GlobalStates.screenLocked - screen: Quickshell.screens.find(s => Config.options.notifications.monitor.enable ? s.name === Config.options.notifications.monitor.name : s.name === Hyprland.focusedMonitor?.name) ?? null + screen: Quickshell.screens.find(s => Config.options.notifications.forceMonitor.enable ? s.name === Config.options.notifications.forceMonitor.name : s.name === Hyprland.focusedMonitor?.name) ?? null WlrLayershell.namespace: "quickshell:notificationPopup" WlrLayershell.layer: WlrLayer.Overlay diff --git a/dots/.config/quickshell/ii/modules/settings/InterfaceConfig.qml b/dots/.config/quickshell/ii/modules/settings/InterfaceConfig.qml index f888f7de4..de544ed82 100644 --- a/dots/.config/quickshell/ii/modules/settings/InterfaceConfig.qml +++ b/dots/.config/quickshell/ii/modules/settings/InterfaceConfig.qml @@ -268,10 +268,10 @@ ContentPage { ConfigSwitch { buttonIcon: "monitor" - text: Translation.tr("Show on specific monitor") - checked: Config.options.notifications.monitor.enable + text: Translation.tr("Force specific monitor") + checked: Config.options.notifications.forceMonitor.enable onCheckedChanged: { - Config.options.notifications.monitor.enable = checked; + Config.options.notifications.forceMonitor.enable = checked; } StyledToolTip { text: Translation.tr("If you have multiple monitors and want notifications to only show on one of them, enable this and enter the monitor name below (e.g., eDP-1)") @@ -279,14 +279,14 @@ ContentPage { } ConfigRow { - enabled: Config.options.notifications.monitor.enable + enabled: Config.options.notifications.forceMonitor.enable MaterialTextArea { Layout.fillWidth: true placeholderText: Translation.tr("Monitor name to show notifications on (e.g., eDP-1)") - text: Config.options.notifications.monitor.name + text: Config.options.notifications.forceMonitor.name wrapMode: TextEdit.Wrap onTextChanged: { - Config.options.notifications.monitor.name = text; + Config.options.notifications.forceMonitor.name = text; } } }