welcome: add bar style

This commit is contained in:
end-4
2025-06-29 23:49:35 +02:00
parent 32dd5eecb7
commit d513d0e1b3
+18
View File
@@ -122,6 +122,24 @@ ApplicationWindow {
ContentPage {
id: contentColumn
anchors.fill: parent
ContentSection {
title: "Bar style"
ConfigSelectionArray {
currentValue: ConfigOptions.bar.cornerStyle
configOptionName: "bar.cornerStyle"
onSelected: (newValue) => {
ConfigLoader.setConfigValueAndSave("bar.cornerStyle", newValue);
}
options: [
{ displayName: "Hug", value: 0 },
{ displayName: "Float", value: 1 },
{ displayName: "Plain rectangle", value: 2 }
]
}
}
ContentSection {
title: "Style & wallpaper"