diff --git a/.config/quickshell/modules/settings/InterfaceConfig.qml b/.config/quickshell/modules/settings/InterfaceConfig.qml index 7d3799d23..f952ef57d 100644 --- a/.config/quickshell/modules/settings/InterfaceConfig.qml +++ b/.config/quickshell/modules/settings/InterfaceConfig.qml @@ -52,6 +52,19 @@ ContentPage { ContentSection { title: "Bar" + 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 } + ] + } + ContentSubsection { title: "Appearance" ConfigRow {