1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-26 22:42:50 -05:00

feat: add configurable per-monitor workspace filtering and system tray monitor selection (#163)

This commit is contained in:
Kyle Moore
2025-09-05 15:36:23 -04:00
committed by GitHub
parent 18484bb9cc
commit 68157ca636
6 changed files with 98 additions and 19 deletions

View File

@@ -44,6 +44,11 @@ Item {
"name": "Notepad Slideout",
"description": "Quick note-taking slideout panel",
"icon": "sticky_note_2"
}, {
"id": "systemTray",
"name": "System Tray",
"description": "System tray icons",
"icon": "notifications"
}]
function getScreenPreferences(componentId) {

View File

@@ -284,6 +284,16 @@ Item {
}
}
}
DankToggle {
width: parent.width
text: "Per-Monitor Workspaces"
description: "Show only workspaces belonging to each specific monitor."
checked: SettingsData.workspacesPerMonitor
onToggled: checked => {
return SettingsData.setWorkspacesPerMonitor(checked);
}
}
}
}