Settings: new display tab
This commit is contained in:
parent
7594651e05
commit
7d952dc226
1 changed files with 348 additions and 109 deletions
|
|
@ -2,6 +2,7 @@ import QtQuick
|
||||||
import QtQuick.Layouts
|
import QtQuick.Layouts
|
||||||
import QtQuick.Controls
|
import QtQuick.Controls
|
||||||
import Quickshell
|
import Quickshell
|
||||||
|
import Quickshell.Io
|
||||||
import qs.Commons
|
import qs.Commons
|
||||||
import qs.Services
|
import qs.Services
|
||||||
import qs.Widgets
|
import qs.Widgets
|
||||||
|
|
@ -9,31 +10,50 @@ import qs.Widgets
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
// Helper functions to update arrays immutably
|
// Time dropdown options (00:00 .. 23:30)
|
||||||
function addMonitor(list, name) {
|
ListModel {
|
||||||
const arr = (list || []).slice()
|
id: timeOptions
|
||||||
if (!arr.includes(name))
|
|
||||||
arr.push(name)
|
|
||||||
return arr
|
|
||||||
}
|
}
|
||||||
function removeMonitor(list, name) {
|
Component.onCompleted: {
|
||||||
return (list || []).filter(function (n) {
|
for (var h = 0; h < 24; h++) {
|
||||||
return n !== name
|
for (var m = 0; m < 60; m += 30) {
|
||||||
})
|
var hh = ("0" + h).slice(-2)
|
||||||
|
var mm = ("0" + m).slice(-2)
|
||||||
|
var key = hh + ":" + mm
|
||||||
|
timeOptions.append({
|
||||||
|
"key": key,
|
||||||
|
"name": key
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
NText {
|
// Check for wlsunset availability when enabling Night Light
|
||||||
text: "Monitor-specific configuration"
|
Process {
|
||||||
font.pointSize: Style.fontSizeL * scaling
|
id: wlsunsetCheck
|
||||||
font.weight: Style.fontWeightBold
|
command: ["which", "wlsunset"]
|
||||||
|
running: false
|
||||||
|
|
||||||
|
onExited: function (exitCode) {
|
||||||
|
if (exitCode === 0) {
|
||||||
|
Settings.data.nightLight.enabled = true
|
||||||
|
NightLightService.apply()
|
||||||
|
ToastService.showNotice("Night Light", "Enabled")
|
||||||
|
} else {
|
||||||
|
Settings.data.nightLight.enabled = false
|
||||||
|
ToastService.showWarning("Night Light", "wlsunset not installed")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stdout: StdioCollector {}
|
||||||
|
stderr: StdioCollector {}
|
||||||
}
|
}
|
||||||
|
|
||||||
NText {
|
spacing: Style.marginL * scaling
|
||||||
text: "Bars and notifications appear on all displays by default. Choose specific displays below to limit where they're shown."
|
|
||||||
font.pointSize: Style.fontSizeM * scaling
|
NLabel {
|
||||||
color: Color.mOnSurfaceVariant
|
label: "Monitor-specific configuration"
|
||||||
wrapMode: Text.WordWrap
|
description: "Configure scaling and brightness settings individually for each connected display."
|
||||||
Layout.fillWidth: true
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
|
|
@ -46,11 +66,13 @@ ColumnLayout {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
implicitHeight: contentCol.implicitHeight + Style.marginXL * 2 * scaling
|
implicitHeight: contentCol.implicitHeight + Style.marginXL * 2 * scaling
|
||||||
radius: Style.radiusM * scaling
|
radius: Style.radiusM * scaling
|
||||||
color: Color.mSurface
|
color: Color.mSurfaceVariant
|
||||||
border.color: Color.mOutline
|
border.color: Color.mOutline
|
||||||
border.width: Math.max(1, Style.borderS * scaling)
|
border.width: Math.max(1, Style.borderS * scaling)
|
||||||
|
|
||||||
property real localScaling: ScalingService.getScreenScale(modelData)
|
property real localScaling: ScalingService.getScreenScale(modelData)
|
||||||
|
property var brightnessMonitor: BrightnessService.getMonitorForScreen(modelData)
|
||||||
|
|
||||||
Connections {
|
Connections {
|
||||||
target: ScalingService
|
target: ScalingService
|
||||||
function onScaleChanged(screenName, scale) {
|
function onScaleChanged(screenName, scale) {
|
||||||
|
|
@ -67,119 +89,116 @@ ColumnLayout {
|
||||||
spacing: Style.marginXXS * scaling
|
spacing: Style.marginXXS * scaling
|
||||||
|
|
||||||
NText {
|
NText {
|
||||||
text: (modelData.name || "Unknown")
|
text: (`${modelData.name}: ${modelData.model}` || "Unknown")
|
||||||
font.pointSize: Style.fontSizeXL * scaling
|
font.pointSize: Style.fontSizeL * scaling
|
||||||
font.weight: Style.fontWeightBold
|
font.weight: Style.fontWeightBold
|
||||||
color: Color.mSecondary
|
color: Color.mSecondary
|
||||||
}
|
}
|
||||||
|
|
||||||
NText {
|
NText {
|
||||||
text: `Resolution: ${modelData.width}x${modelData.height} - Position: (${modelData.x}, ${modelData.y})`
|
text: `Resolution: ${modelData.width}x${modelData.height} at (${modelData.x}, ${modelData.y})`
|
||||||
font.pointSize: Style.fontSizeXS * scaling
|
font.pointSize: Style.fontSizeXS * scaling
|
||||||
color: Color.mOnSurfaceVariant
|
color: Color.mOnSurfaceVariant
|
||||||
wrapMode: Text.WordWrap
|
wrapMode: Text.WordWrap
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Scale
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
spacing: Style.marginL * scaling
|
spacing: Style.marginS * scaling
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
|
|
||||||
NToggle {
|
RowLayout {
|
||||||
Layout.fillWidth: true
|
spacing: Style.marginM * scaling
|
||||||
label: "Bar"
|
|
||||||
description: "Enable the bar on this monitor."
|
|
||||||
checked: (Settings.data.bar.monitors || []).indexOf(modelData.name) !== -1
|
|
||||||
onToggled: checked => {
|
|
||||||
if (checked) {
|
|
||||||
Settings.data.bar.monitors = addMonitor(Settings.data.bar.monitors, modelData.name)
|
|
||||||
} else {
|
|
||||||
Settings.data.bar.monitors = removeMonitor(Settings.data.bar.monitors, modelData.name)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
NToggle {
|
|
||||||
Layout.fillWidth: true
|
|
||||||
label: "Notifications"
|
|
||||||
description: "Enable notifications on this monitor."
|
|
||||||
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)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
NToggle {
|
|
||||||
Layout.fillWidth: true
|
|
||||||
label: "Dock"
|
|
||||||
description: "Enable the dock on this monitor."
|
|
||||||
checked: (Settings.data.dock.monitors || []).indexOf(modelData.name) !== -1
|
|
||||||
onToggled: checked => {
|
|
||||||
if (checked) {
|
|
||||||
Settings.data.dock.monitors = addMonitor(Settings.data.dock.monitors, modelData.name)
|
|
||||||
} else {
|
|
||||||
Settings.data.dock.monitors = removeMonitor(Settings.data.dock.monitors, modelData.name)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ColumnLayout {
|
|
||||||
spacing: Style.marginS * scaling
|
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
|
|
||||||
RowLayout {
|
NText {
|
||||||
Layout.fillWidth: true
|
text: "Scale"
|
||||||
spacing: Style.marginL * scaling
|
Layout.preferredWidth: 80 * scaling
|
||||||
|
|
||||||
ColumnLayout {
|
|
||||||
spacing: Style.marginXXS * scaling
|
|
||||||
Layout.fillWidth: true
|
|
||||||
|
|
||||||
NText {
|
|
||||||
text: "Scale"
|
|
||||||
font.pointSize: Style.fontSizeM * scaling
|
|
||||||
font.weight: Style.fontWeightBold
|
|
||||||
color: Color.mOnSurface
|
|
||||||
}
|
|
||||||
NText {
|
|
||||||
text: "Scale the user interface on this monitor."
|
|
||||||
font.pointSize: Style.fontSizeS * scaling
|
|
||||||
color: Color.mOnSurfaceVariant
|
|
||||||
wrapMode: Text.WordWrap
|
|
||||||
Layout.fillWidth: true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
NText {
|
|
||||||
text: `${Math.round(localScaling * 100)}%`
|
|
||||||
Layout.alignment: Qt.AlignVCenter
|
|
||||||
Layout.minimumWidth: 50 * scaling
|
|
||||||
horizontalAlignment: Text.AlignRight
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
RowLayout {
|
NSlider {
|
||||||
spacing: Style.marginS * scaling
|
id: scaleSlider
|
||||||
|
from: 0.7
|
||||||
|
to: 1.8
|
||||||
|
stepSize: 0.01
|
||||||
|
value: localScaling
|
||||||
|
onPressedChanged: ScalingService.setScreenScale(modelData, value)
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
|
Layout.minimumWidth: 200 * scaling
|
||||||
|
}
|
||||||
|
|
||||||
NSlider {
|
NText {
|
||||||
id: scaleSlider
|
text: `${Math.round(localScaling * 100)}%`
|
||||||
from: 0.7
|
Layout.preferredWidth: 50 * scaling
|
||||||
to: 1.8
|
horizontalAlignment: Text.AlignRight
|
||||||
stepSize: 0.01
|
}
|
||||||
value: localScaling
|
|
||||||
onPressedChanged: ScalingService.setScreenScale(modelData, value)
|
// Reset button container
|
||||||
Layout.fillWidth: true
|
Item {
|
||||||
}
|
Layout.preferredWidth: 40 * scaling
|
||||||
|
Layout.preferredHeight: 30 * scaling
|
||||||
|
|
||||||
NIconButton {
|
NIconButton {
|
||||||
icon: "refresh"
|
icon: "refresh"
|
||||||
|
sizeRatio: 0.8
|
||||||
tooltipText: "Reset scaling"
|
tooltipText: "Reset scaling"
|
||||||
onClicked: ScalingService.setScreenScale(modelData, 1.0)
|
onClicked: ScalingService.setScreenScale(modelData, 1.0)
|
||||||
|
anchors.right: parent.right
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Brightness
|
||||||
|
ColumnLayout {
|
||||||
|
spacing: Style.marginL * scaling
|
||||||
|
Layout.fillWidth: true
|
||||||
|
visible: brightnessMonitor !== undefined && brightnessMonitor !== null
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
spacing: Style.marginM * scaling
|
||||||
|
|
||||||
|
NText {
|
||||||
|
text: "Brightness"
|
||||||
|
Layout.preferredWidth: 80 * scaling
|
||||||
|
}
|
||||||
|
|
||||||
|
NSlider {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.minimumWidth: 200 * scaling
|
||||||
|
from: 0
|
||||||
|
to: 1
|
||||||
|
value: brightnessMonitor ? brightnessMonitor.brightness : 0.5
|
||||||
|
stepSize: 0.05
|
||||||
|
onPressedChanged: {
|
||||||
|
if (!pressed && brightnessMonitor) {
|
||||||
|
brightnessMonitor.setBrightness(value)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
NText {
|
||||||
|
text: brightnessMonitor ? Math.round(brightnessMonitor.brightness * 100) + "%" : "N/A"
|
||||||
|
Layout.preferredWidth: 50 * scaling
|
||||||
|
horizontalAlignment: Text.AlignRight
|
||||||
|
}
|
||||||
|
|
||||||
|
// Empty container to match scale row layout
|
||||||
|
Item {
|
||||||
|
Layout.preferredWidth: 40 * scaling
|
||||||
|
Layout.preferredHeight: 30 * scaling
|
||||||
|
|
||||||
|
// Method text positioned in the button area
|
||||||
|
NText {
|
||||||
|
text: brightnessMonitor ? brightnessMonitor.method : ""
|
||||||
|
font.pointSize: Style.fontSizeXS * scaling
|
||||||
|
color: Color.mOnSurfaceVariant
|
||||||
|
anchors.right: parent.right
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
horizontalAlignment: Text.AlignRight
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -188,4 +207,224 @@ ColumnLayout {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
NDivider {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.topMargin: Style.marginXL * scaling
|
||||||
|
Layout.bottomMargin: Style.marginXL * scaling
|
||||||
|
}
|
||||||
|
|
||||||
|
// Brightness Section
|
||||||
|
ColumnLayout {
|
||||||
|
spacing: Style.marginS * scaling
|
||||||
|
Layout.fillWidth: true
|
||||||
|
|
||||||
|
NText {
|
||||||
|
text: "Brightness"
|
||||||
|
font.pointSize: Style.fontSizeXXL * scaling
|
||||||
|
font.weight: Style.fontWeightBold
|
||||||
|
color: Color.mSecondary
|
||||||
|
}
|
||||||
|
|
||||||
|
// Brightness Step Section
|
||||||
|
ColumnLayout {
|
||||||
|
spacing: Style.marginS * scaling
|
||||||
|
Layout.fillWidth: true
|
||||||
|
|
||||||
|
NSpinBox {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
label: "Brightness Step Size"
|
||||||
|
description: "Adjust the step size for brightness changes (scroll wheel, keyboard shortcuts)."
|
||||||
|
minimum: 1
|
||||||
|
maximum: 50
|
||||||
|
value: Settings.data.brightness.brightnessStep
|
||||||
|
stepSize: 1
|
||||||
|
suffix: "%"
|
||||||
|
onValueChanged: {
|
||||||
|
Settings.data.brightness.brightnessStep = value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
NDivider {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.topMargin: Style.marginXL * scaling
|
||||||
|
Layout.bottomMargin: Style.marginXL * scaling
|
||||||
|
}
|
||||||
|
|
||||||
|
// Night Light Section
|
||||||
|
ColumnLayout {
|
||||||
|
spacing: Style.marginXS * scaling
|
||||||
|
Layout.fillWidth: true
|
||||||
|
|
||||||
|
NText {
|
||||||
|
text: "Night Light"
|
||||||
|
font.pointSize: Style.fontSizeXXL * scaling
|
||||||
|
font.weight: Style.fontWeightBold
|
||||||
|
color: Color.mSecondary
|
||||||
|
}
|
||||||
|
|
||||||
|
NText {
|
||||||
|
text: "Reduce blue light emission to help you sleep better and reduce eye strain."
|
||||||
|
font.pointSize: Style.fontSizeM * scaling
|
||||||
|
color: Color.mOnSurfaceVariant
|
||||||
|
wrapMode: Text.WordWrap
|
||||||
|
Layout.fillWidth: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
NToggle {
|
||||||
|
label: "Enable Night Light"
|
||||||
|
description: "Apply a warm color filter to reduce blue light emission."
|
||||||
|
checked: Settings.data.nightLight.enabled
|
||||||
|
onToggled: checked => {
|
||||||
|
if (checked) {
|
||||||
|
// Verify wlsunset exists before enabling
|
||||||
|
wlsunsetCheck.running = true
|
||||||
|
} else {
|
||||||
|
Settings.data.nightLight.enabled = false
|
||||||
|
Settings.data.nightLight.forced = false
|
||||||
|
NightLightService.apply()
|
||||||
|
ToastService.showNotice("Night Light", "Disabled")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Temperature
|
||||||
|
ColumnLayout {
|
||||||
|
spacing: Style.marginXS * scaling
|
||||||
|
Layout.alignment: Qt.AlignVCenter
|
||||||
|
|
||||||
|
NLabel {
|
||||||
|
label: "Color temperature"
|
||||||
|
description: "Choose two temperatures in Kelvin."
|
||||||
|
}
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
visible: Settings.data.nightLight.enabled
|
||||||
|
spacing: Style.marginM * scaling
|
||||||
|
Layout.fillWidth: false
|
||||||
|
Layout.fillHeight: true
|
||||||
|
Layout.alignment: Qt.AlignVCenter
|
||||||
|
|
||||||
|
NText {
|
||||||
|
text: "Night"
|
||||||
|
font.pointSize: Style.fontSizeM * scaling
|
||||||
|
color: Color.mOnSurfaceVariant
|
||||||
|
Layout.alignment: Qt.AlignVCenter
|
||||||
|
}
|
||||||
|
|
||||||
|
NTextInput {
|
||||||
|
text: Settings.data.nightLight.nightTemp
|
||||||
|
inputMethodHints: Qt.ImhDigitsOnly
|
||||||
|
Layout.alignment: Qt.AlignVCenter
|
||||||
|
onEditingFinished: {
|
||||||
|
var nightTemp = parseInt(text)
|
||||||
|
var dayTemp = parseInt(Settings.data.nightLight.dayTemp)
|
||||||
|
if (!isNaN(nightTemp) && !isNaN(dayTemp)) {
|
||||||
|
// Clamp value between [1000 .. (dayTemp-500)]
|
||||||
|
var clampedValue = Math.min(dayTemp - 500, Math.max(1000, nightTemp))
|
||||||
|
text = Settings.data.nightLight.nightTemp = clampedValue.toString()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Item {}
|
||||||
|
|
||||||
|
NText {
|
||||||
|
text: "Day"
|
||||||
|
font.pointSize: Style.fontSizeM * scaling
|
||||||
|
color: Color.mOnSurfaceVariant
|
||||||
|
Layout.alignment: Qt.AlignVCenter
|
||||||
|
}
|
||||||
|
NTextInput {
|
||||||
|
text: Settings.data.nightLight.dayTemp
|
||||||
|
inputMethodHints: Qt.ImhDigitsOnly
|
||||||
|
Layout.alignment: Qt.AlignVCenter
|
||||||
|
onEditingFinished: {
|
||||||
|
var dayTemp = parseInt(text)
|
||||||
|
var nightTemp = parseInt(Settings.data.nightLight.nightTemp)
|
||||||
|
if (!isNaN(nightTemp) && !isNaN(dayTemp)) {
|
||||||
|
// Clamp value between [(nightTemp+500) .. 6500]
|
||||||
|
var clampedValue = Math.max(nightTemp + 500, Math.min(6500, dayTemp))
|
||||||
|
text = Settings.data.nightLight.dayTemp = clampedValue.toString()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
NToggle {
|
||||||
|
label: "Automatic Scheduling"
|
||||||
|
description: `Based on the sunset and sunrise time in <i>${LocationService.stableName}</i> - recommended.`
|
||||||
|
checked: Settings.data.nightLight.autoSchedule
|
||||||
|
onToggled: checked => Settings.data.nightLight.autoSchedule = checked
|
||||||
|
visible: Settings.data.nightLight.enabled
|
||||||
|
}
|
||||||
|
|
||||||
|
// Schedule settings
|
||||||
|
ColumnLayout {
|
||||||
|
spacing: Style.marginXS * scaling
|
||||||
|
visible: Settings.data.nightLight.enabled && !Settings.data.nightLight.autoSchedule && !Settings.data.nightLight.forced
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
Layout.fillWidth: false
|
||||||
|
spacing: Style.marginM * scaling
|
||||||
|
|
||||||
|
NLabel {
|
||||||
|
label: "Manual Scheduling"
|
||||||
|
}
|
||||||
|
|
||||||
|
Item {// add a little more spacing
|
||||||
|
}
|
||||||
|
|
||||||
|
NText {
|
||||||
|
text: "Sunrise Time"
|
||||||
|
font.pointSize: Style.fontSizeM * scaling
|
||||||
|
color: Color.mOnSurfaceVariant
|
||||||
|
}
|
||||||
|
|
||||||
|
NComboBox {
|
||||||
|
model: timeOptions
|
||||||
|
currentKey: Settings.data.nightLight.manualSunrise
|
||||||
|
placeholder: "Select start time"
|
||||||
|
onSelected: key => Settings.data.nightLight.manualSunrise = key
|
||||||
|
minimumWidth: 120 * scaling
|
||||||
|
}
|
||||||
|
|
||||||
|
Item {// add a little more spacing
|
||||||
|
}
|
||||||
|
|
||||||
|
NText {
|
||||||
|
text: "Sunset Time"
|
||||||
|
font.pointSize: Style.fontSizeM * scaling
|
||||||
|
color: Color.mOnSurfaceVariant
|
||||||
|
}
|
||||||
|
NComboBox {
|
||||||
|
model: timeOptions
|
||||||
|
currentKey: Settings.data.nightLight.manualSunset
|
||||||
|
placeholder: "Select stop time"
|
||||||
|
onSelected: key => Settings.data.nightLight.manualSunset = key
|
||||||
|
minimumWidth: 120 * scaling
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Force activation toggle
|
||||||
|
NToggle {
|
||||||
|
label: "Force activation"
|
||||||
|
description: "Immediately apply night temperature without scheduling or fade."
|
||||||
|
checked: Settings.data.nightLight.forced
|
||||||
|
onToggled: checked => {
|
||||||
|
Settings.data.nightLight.forced = checked
|
||||||
|
if (checked && !Settings.data.nightLight.enabled) {
|
||||||
|
// Ensure enabled when forcing
|
||||||
|
wlsunsetCheck.running = true
|
||||||
|
} else {
|
||||||
|
NightLightService.apply()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
visible: Settings.data.nightLight.enabled
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue