1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-27 06:52:50 -05:00

Added number indexing option for the workspace switcher

This commit is contained in:
amadoabad
2025-07-20 00:03:39 +03:00
parent 4202b8323b
commit fa3d02552a
3 changed files with 30 additions and 1 deletions

View File

@@ -489,6 +489,15 @@ PanelWindow {
}
}
SettingsToggle {
text: "Workspace Index Numbers"
description: "Show workspace index numbers in the top bar workspace switcher"
checked: Prefs.showWorkspaceIndex
onToggled: (checked) => {
return Prefs.setShowWorkspaceIndex(checked);
}
}
}
}