162 lines
4.4 KiB
QML
162 lines
4.4 KiB
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
import Quickshell
|
|
import qs.Commons
|
|
import qs.Services
|
|
import qs.Widgets
|
|
|
|
ColumnLayout {
|
|
id: root
|
|
|
|
// Helper functions to update arrays immutably
|
|
function addMonitor(list, name) {
|
|
const arr = (list || []).slice()
|
|
if (!arr.includes(name))
|
|
arr.push(name)
|
|
return arr
|
|
}
|
|
function removeMonitor(list, name) {
|
|
return (list || []).filter(function (n) {
|
|
return n !== name
|
|
})
|
|
}
|
|
|
|
// General Notification Settings
|
|
ColumnLayout {
|
|
spacing: Style.marginL * scaling
|
|
Layout.fillWidth: true
|
|
|
|
NHeader {
|
|
label: "Appearance"
|
|
description: "Configure notifications appearance and behavior."
|
|
}
|
|
|
|
NToggle {
|
|
label: "Do Not Disturb"
|
|
description: "Disable all notification popups when enabled."
|
|
checked: Settings.data.notifications.doNotDisturb
|
|
onToggled: checked => Settings.data.notifications.doNotDisturb = checked
|
|
}
|
|
}
|
|
|
|
NDivider {
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: Style.marginXL * scaling
|
|
Layout.bottomMargin: Style.marginXL * scaling
|
|
}
|
|
|
|
// Monitor Configuration
|
|
ColumnLayout {
|
|
spacing: Style.marginM * scaling
|
|
Layout.fillWidth: true
|
|
|
|
NHeader {
|
|
label: "Monitors Configuration"
|
|
description: "Show bar on specific monitors. Defaults to all if none are chosen."
|
|
}
|
|
|
|
Repeater {
|
|
model: Quickshell.screens || []
|
|
delegate: NCheckbox {
|
|
Layout.fillWidth: true
|
|
label: modelData.name || "Unknown"
|
|
description: `${modelData.model} - ${modelData.width}x${modelData.height} [x:${modelData.x} y:${modelData.y}]`
|
|
checked: (Settings.data.notifications.monitors || []).indexOf(modelData.name) !== -1
|
|
onToggled: checked => {
|
|
if (checked) {
|
|
Settings.data.notifications.monitors = addMonitor(Settings.data.notifications.monitors, modelData.name)
|
|
} else {
|
|
Settings.data.notifications.monitors = removeMonitor(Settings.data.notifications.monitors, modelData.name)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
NDivider {
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: Style.marginXL * scaling
|
|
Layout.bottomMargin: Style.marginXL * scaling
|
|
}
|
|
|
|
// Notification Duration Settings
|
|
ColumnLayout {
|
|
spacing: Style.marginL * scaling
|
|
Layout.fillWidth: true
|
|
|
|
NHeader {
|
|
label: "Notification Duration"
|
|
description: "Configure how long notifications stay visible based on their urgency level."
|
|
}
|
|
|
|
// Low Urgency Duration
|
|
ColumnLayout {
|
|
spacing: Style.marginXXS * scaling
|
|
Layout.fillWidth: true
|
|
|
|
NLabel {
|
|
label: "Low Urgency Duration"
|
|
description: "How long low priority notifications stay visible."
|
|
}
|
|
|
|
NValueSlider {
|
|
Layout.fillWidth: true
|
|
from: 1
|
|
to: 30
|
|
stepSize: 1
|
|
value: Settings.data.notifications.lowUrgencyDuration
|
|
onMoved: value => Settings.data.notifications.lowUrgencyDuration = value
|
|
text: Settings.data.notifications.lowUrgencyDuration + "s"
|
|
}
|
|
}
|
|
|
|
// Normal Urgency Duration
|
|
ColumnLayout {
|
|
spacing: Style.marginXXS * scaling
|
|
Layout.fillWidth: true
|
|
|
|
NLabel {
|
|
label: "Normal Urgency Duration"
|
|
description: "How long normal priority notifications stay visible."
|
|
}
|
|
|
|
NValueSlider {
|
|
Layout.fillWidth: true
|
|
from: 1
|
|
to: 30
|
|
stepSize: 1
|
|
value: Settings.data.notifications.normalUrgencyDuration
|
|
onMoved: value => Settings.data.notifications.normalUrgencyDuration = value
|
|
text: Settings.data.notifications.normalUrgencyDuration + "s"
|
|
}
|
|
}
|
|
|
|
// Critical Urgency Duration
|
|
ColumnLayout {
|
|
spacing: Style.marginXXS * scaling
|
|
Layout.fillWidth: true
|
|
|
|
NLabel {
|
|
label: "Critical Urgency Duration"
|
|
description: "How long critical priority notifications stay visible."
|
|
}
|
|
|
|
NValueSlider {
|
|
Layout.fillWidth: true
|
|
from: 1
|
|
to: 30
|
|
stepSize: 1
|
|
value: Settings.data.notifications.criticalUrgencyDuration
|
|
onMoved: value => Settings.data.notifications.criticalUrgencyDuration = value
|
|
text: Settings.data.notifications.criticalUrgencyDuration + "s"
|
|
}
|
|
}
|
|
}
|
|
|
|
NDivider {
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: Style.marginXL * scaling
|
|
Layout.bottomMargin: Style.marginXL * scaling
|
|
}
|
|
}
|