Named workspaces improvements

- renamed settings to showWorkspacesNames (plural)
- improved overall look and readability
This commit is contained in:
LemmyCook 2025-08-26 12:21:48 -04:00
parent 22af8e91cc
commit 620b3e3abc
3 changed files with 35 additions and 32 deletions

View file

@ -121,19 +121,19 @@ ColumnLayout {
NToggle {
label: "Show Battery Percentage"
description: "Show battery percentage at all times."
description: "Display battery percentage at all times."
checked: Settings.data.bar.alwaysShowBatteryPercentage
onToggled: checked => {
Settings.data.bar.alwaysShowBatteryPercentage = checked
}
}
NToggle {
label: "Show Workspace Names"
description: "Show the workspace names on the workspace indicators"
checked: Settings.data.bar.showWorkspaceNames
label: "Show Workspaces Names"
description: "Display the workspace name in the workspace indicator"
checked: Settings.data.bar.showWorkspacesNames
onToggled: checked => {
Settings.data.bar.showWorkspaceNames = checked
Settings.data.bar.showWorkspacesNames = checked
}
}