diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-10-21 19:40:34 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-10-21 19:40:34 +1100 |
| commit | 58ac60c47c9ea44665ea0e7814562a6933721aaf (patch) | |
| tree | cf381d577c9b2a10dd60525a1ba7331d39a702c3 /config/BarConfig.qml | |
| parent | internal: fix serviceref lsp warning (diff) | |
| download | caelestia-shell-58ac60c47c9ea44665ea0e7814562a6933721aaf.tar.gz caelestia-shell-58ac60c47c9ea44665ea0e7814562a6933721aaf.tar.bz2 caelestia-shell-58ac60c47c9ea44665ea0e7814562a6933721aaf.zip | |
bar/popouts: allow disabling individual popouts
Closes #826
Diffstat (limited to 'config/BarConfig.qml')
| -rw-r--r-- | config/BarConfig.qml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/config/BarConfig.qml b/config/BarConfig.qml index 86c2a40..34819b1 100644 --- a/config/BarConfig.qml +++ b/config/BarConfig.qml @@ -5,6 +5,7 @@ JsonObject { property bool showOnHover: true property int dragThreshold: 20 property ScrollActions scrollActions: ScrollActions {} + property Popouts popouts: Popouts {} property Workspaces workspaces: Workspaces {} property Tray tray: Tray {} property Status status: Status {} @@ -56,6 +57,12 @@ JsonObject { property bool brightness: true } + component Popouts: JsonObject { + property bool activeWindow: true + property bool tray: true + property bool statusIcons: true + } + component Workspaces: JsonObject { property int shown: 5 property bool activeIndicator: true |