From 3d9a5a72b6ffd0271faf421993b24d01f65a7959 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Thu, 19 Jun 2025 23:29:52 +0200 Subject: [PATCH] settings: add titlebar --- .config/quickshell/modules/settings/Style.qml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.config/quickshell/modules/settings/Style.qml b/.config/quickshell/modules/settings/Style.qml index 732c62f39..c86bce534 100644 --- a/.config/quickshell/modules/settings/Style.qml +++ b/.config/quickshell/modules/settings/Style.qml @@ -209,4 +209,17 @@ ContentPage { } } } + + ContentSection { + title: "Shell windows" + + ConfigSwitch { + text: "Title bar" + checked: ConfigOptions.windows.showTitlebar + onClicked: checked = !checked; + onCheckedChanged: { + ConfigLoader.setConfigValueAndSave("windows.showTitlebar", checked); + } + } + } } \ No newline at end of file