1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-09 15:05:39 -05:00

Re-add padding as option

This commit is contained in:
bbedward
2025-07-21 20:43:23 -04:00
parent c47ecf8fb0
commit 1854395a0c
4 changed files with 65 additions and 26 deletions

View File

@@ -624,6 +624,20 @@ PanelWindow {
}
}
}
}
// Workspace Settings
SettingsSection {
title: "Workspaces"
iconName: "tab"
content: Column {
width: parent.width
spacing: Theme.spacingM
SettingsToggle {
text: "Workspace Index Numbers"
description: "Show workspace index numbers in the top bar workspace switcher"
@@ -633,6 +647,15 @@ PanelWindow {
}
}
SettingsToggle {
text: "Workspace Padding"
description: "Always show a minimum of 3 workspaces, even if fewer are available"
checked: Prefs.showWorkspacePadding
onToggled: (checked) => {
return Prefs.setShowWorkspacePadding(checked);
}
}
}
}