From d513d0e1b3c66a89a4ac6dd56405e3724ef8249b Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sun, 29 Jun 2025 23:49:35 +0200 Subject: [PATCH] welcome: add bar style --- .config/quickshell/welcome.qml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.config/quickshell/welcome.qml b/.config/quickshell/welcome.qml index 0f86ebc49..12296532d 100644 --- a/.config/quickshell/welcome.qml +++ b/.config/quickshell/welcome.qml @@ -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"