1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-06-08 12:13:31 -04:00

feat(workspace): optionally group app icons on the active workspace

Closes #1208
This commit is contained in:
purian23
2026-06-03 18:32:53 -04:00
parent 6991b45fbe
commit e3de54c941
4 changed files with 27 additions and 2 deletions
@@ -125,6 +125,16 @@ Item {
onToggled: checked => SettingsData.set("groupWorkspaceApps", checked)
}
SettingsToggleRow {
settingKey: "groupActiveWorkspaceApps"
tags: ["workspace", "apps", "icons", "group", "grouped", "active", "focused"]
text: I18n.tr("Group Active Workspace")
description: I18n.tr("Also group repeated application icons on the active workspace")
checked: SettingsData.groupActiveWorkspaceApps
visible: SettingsData.showWorkspaceApps && SettingsData.groupWorkspaceApps
onToggled: checked => SettingsData.set("groupActiveWorkspaceApps", checked)
}
SettingsToggleRow {
settingKey: "workspaceActiveAppHighlightEnabled"
tags: ["workspace", "apps", "icons", "highlight", "active", "focused"]