formatting

This commit is contained in:
quadbyte 2025-08-15 23:40:35 -04:00
parent 34f6affe4f
commit 22f7dab34d
11 changed files with 67 additions and 66 deletions

View file

@ -149,14 +149,14 @@ NLoader {
baseSize: Style.baseWidgetSize * 0.75
checked: Settings.data.network.wifiEnabled
onToggled: checked => {
Settings.data.network.wifiEnabled = checked
NetworkService.setWifiEnabled(checked)
Settings.data.network.wifiEnabled = checked
NetworkService.setWifiEnabled(checked)
// If enabling WiFi while menu is open, refresh after a delay
if (checked) {
wifiEnableRefreshTimer.start()
}
}
// If enabling WiFi while menu is open, refresh after a delay
if (checked) {
wifiEnableRefreshTimer.start()
}
}
}
NIconButton {

View file

@ -202,8 +202,8 @@ NLoader {
label: "Label"
description: "Description"
onToggled: checked => {
console.log("[DemoPanel] NToggle:", checked)
}
console.log("[DemoPanel] NToggle:", checked)
}
}
NDivider {

View file

@ -125,10 +125,10 @@ ColumnLayout {
description: "Mute or unmute the default audio output"
checked: AudioService.muted
onToggled: checked => {
if (AudioService.sink && AudioService.sink.audio) {
AudioService.sink.audio.muted = checked
}
}
if (AudioService.sink && AudioService.sink.audio) {
AudioService.sink.audio.muted = checked
}
}
}
}
}

View file

@ -45,8 +45,8 @@ ColumnLayout {
description: "Display the title of the currently focused window below the bar"
checked: Settings.data.bar.showActiveWindow
onToggled: checked => {
Settings.data.bar.showActiveWindow = checked
}
Settings.data.bar.showActiveWindow = checked
}
}
NToggle {
@ -54,8 +54,8 @@ ColumnLayout {
description: "Display system information (CPU, RAM, Temperature)"
checked: Settings.data.bar.showSystemInfo
onToggled: checked => {
Settings.data.bar.showSystemInfo = checked
}
Settings.data.bar.showSystemInfo = checked
}
}
NToggle {
@ -63,8 +63,8 @@ ColumnLayout {
description: "Display media controls and information"
checked: Settings.data.bar.showMedia
onToggled: checked => {
Settings.data.bar.showMedia = checked
}
Settings.data.bar.showMedia = checked
}
}
}
}

View file

@ -131,11 +131,11 @@ ColumnLayout {
description: "Automatically generate colors based on your active wallpaper using Matugen"
checked: Settings.data.colorSchemes.useWallpaperColors
onToggled: checked => {
Settings.data.colorSchemes.useWallpaperColors = checked
if (Settings.data.colorSchemes.useWallpaperColors) {
ColorSchemesService.changedWallpaper()
}
}
Settings.data.colorSchemes.useWallpaperColors = checked
if (Settings.data.colorSchemes.useWallpaperColors) {
ColorSchemesService.changedWallpaper()
}
}
}
NDivider {

View file

@ -91,12 +91,12 @@ Item {
description: "Enable the top 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)
}
}
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 {
@ -104,14 +104,14 @@ Item {
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)
}
}
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 {
@ -119,12 +119,13 @@ Item {
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)
}
}
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)
}
}
}
}
}

View file

@ -97,8 +97,8 @@ ColumnLayout {
description: "Display rounded corners on the edge of the screen"
checked: Settings.data.general.showScreenCorners
onToggled: checked => {
Settings.data.general.showScreenCorners = checked
}
Settings.data.general.showScreenCorners = checked
}
}
NToggle {
@ -106,8 +106,8 @@ ColumnLayout {
description: "Dim the desktop when panels or menus are open"
checked: Settings.data.general.dimDesktop
onToggled: checked => {
Settings.data.general.dimDesktop = checked
}
Settings.data.general.dimDesktop = checked
}
}
NToggle {
@ -115,8 +115,8 @@ ColumnLayout {
description: "Automatically hide the dock when not in use"
checked: Settings.data.dock.autoHide
onToggled: checked => {
Settings.data.dock.autoHide = checked
}
Settings.data.dock.autoHide = checked
}
}
}
}

View file

@ -47,8 +47,8 @@ ColumnLayout {
description: "Enable WiFi connectivity"
checked: Settings.data.network.wifiEnabled
onToggled: checked => {
Settings.data.network.wifiEnabled = checked
}
Settings.data.network.wifiEnabled = checked
}
}
NToggle {
@ -56,8 +56,8 @@ ColumnLayout {
description: "Enable Bluetooth connectivity"
checked: Settings.data.network.bluetoothEnabled
onToggled: checked => {
Settings.data.network.bluetoothEnabled = checked
}
Settings.data.network.bluetoothEnabled = checked
}
}
}
}

View file

@ -67,8 +67,8 @@ ColumnLayout {
description: "Record mouse cursor in the video"
checked: Settings.data.screenRecorder.showCursor
onToggled: checked => {
Settings.data.screenRecorder.showCursor = checked
}
Settings.data.screenRecorder.showCursor = checked
}
}
}
}

View file

@ -83,8 +83,8 @@ ColumnLayout {
description: "Display time in 12-hour format (AM/PM) instead of 24-hour"
checked: Settings.data.location.use12HourClock
onToggled: checked => {
Settings.data.location.use12HourClock = checked
}
Settings.data.location.use12HourClock = checked
}
}
NToggle {
@ -92,8 +92,8 @@ ColumnLayout {
description: "Display date as DD/MM instead of MM/DD"
checked: Settings.data.location.reverseDayMonth
onToggled: checked => {
Settings.data.location.reverseDayMonth = checked
}
Settings.data.location.reverseDayMonth = checked
}
}
}
@ -121,8 +121,8 @@ ColumnLayout {
description: "Display temperature in Fahrenheit instead of Celsius"
checked: Settings.data.location.useFahrenheit
onToggled: checked => {
Settings.data.location.useFahrenheit = checked
}
Settings.data.location.useFahrenheit = checked
}
}
}
}

View file

@ -89,8 +89,8 @@ ColumnLayout {
description: "Automatically select random wallpapers from the folder"
checked: Settings.data.wallpaper.isRandom
onToggled: checked => {
Settings.data.wallpaper.isRandom = checked
}
Settings.data.wallpaper.isRandom = checked
}
}
// Interval
@ -159,8 +159,8 @@ ColumnLayout {
description: "Use SWWW daemon for advanced wallpaper management"
checked: Settings.data.wallpaper.swww.enabled
onToggled: checked => {
Settings.data.wallpaper.swww.enabled = checked
}
Settings.data.wallpaper.swww.enabled = checked
}
}
// SWWW Settings (only visible when useSWWW is enabled)