settings: add titlebar

This commit is contained in:
end-4
2025-06-19 23:29:52 +02:00
parent 2db4b33fe2
commit 3d9a5a72b6
@@ -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);
}
}
}
}