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

merge the two workspace switcher widgets and add "Show apps" option

This commit is contained in:
bbedward
2025-09-02 18:55:36 -04:00
parent 213543acb3
commit cfbeb6062b
7 changed files with 179 additions and 1289 deletions

View File

@@ -231,6 +231,17 @@ Item {
checked)
}
}
DankToggle {
width: parent.width
text: "Show Workspace Apps"
description: "Display application icons in workspace indicators"
checked: SettingsData.showWorkspaceApps
onToggled: checked => {
return SettingsData.setShowWorkspaceApps(
checked)
}
}
}
}