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

TopBar: add "goth" corners option for the swooping edge effect

This commit is contained in:
bbedward
2025-09-18 23:37:32 -04:00
parent 97f0acadb6
commit 542536455b
3 changed files with 159 additions and 61 deletions

View File

@@ -866,6 +866,17 @@ Item {
checked)
}
}
DankToggle {
width: parent.width
text: "Goth Corners"
description: "Add curved swooping tips at the bottom of the bar."
checked: SettingsData.topBarGothCornersEnabled
onToggled: checked => {
SettingsData.setTopBarGothCornersEnabled(
checked)
}
}
}
}