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

@ -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
}
}
}
}