Added setting for workspace names

This commit is contained in:
MichaelThomas0721 2025-08-25 13:47:54 -04:00
parent 7a849806fb
commit c917d7dccb
3 changed files with 25 additions and 0 deletions

View file

@ -127,6 +127,15 @@ ColumnLayout {
Settings.data.bar.alwaysShowBatteryPercentage = checked
}
}
NToggle {
label: "Show Workspace Names"
description: "Show the workspace names on the workspace indicators"
checked: Settings.data.bar.showWorkspaceNames
onToggled: checked => {
Settings.data.bar.showWorkspaceNames = checked
}
}
NDivider {
Layout.fillWidth: true