diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-07-20 16:43:47 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-07-20 16:43:47 +1000 |
| commit | 4cd554d19154a6c931d68e955751f9a66b60d9f2 (patch) | |
| tree | 036ebde8cc1dc6b442079158cc393e1859d14e42 /config/Config.qml | |
| parent | feat: add apple studio display brightness support (#214) (diff) | |
| download | caelestia-shell-4cd554d19154a6c931d68e955751f9a66b60d9f2.tar.gz caelestia-shell-4cd554d19154a6c931d68e955751f9a66b60d9f2.tar.bz2 caelestia-shell-4cd554d19154a6c931d68e955751f9a66b60d9f2.zip | |
config: allow disabling background
Closes #208
Diffstat (limited to 'config/Config.qml')
| -rw-r--r-- | config/Config.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/Config.qml b/config/Config.qml index e713023..1ab8cb4 100644 --- a/config/Config.qml +++ b/config/Config.qml @@ -7,6 +7,7 @@ import Quickshell.Io Singleton { id: root + property alias background: adapter.background property alias bar: adapter.bar property alias border: adapter.border property alias dashboard: adapter.dashboard @@ -28,6 +29,7 @@ Singleton { JsonAdapter { id: adapter + property BackgroundConfig background: BackgroundConfig {} property BarConfig bar: BarConfig {} property BorderConfig border: BorderConfig {} property DashboardConfig dashboard: DashboardConfig {} |