diff options
| author | ATDMA <atdma2600@gmail.com> | 2025-11-24 16:55:45 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-24 16:55:45 +0000 |
| commit | 70496b402df73a2dc5af749b9e471848e6ac1239 (patch) | |
| tree | dad6e9b55ffb53fed0c467e594c29b65f9bb73c0 /config | |
| parent | controlcenter: cleaned up wallpapergrid (diff) | |
| parent | bar/activewindow: add option to invert rotate (#922) (diff) | |
| download | caelestia-shell-70496b402df73a2dc5af749b9e471848e6ac1239.tar.gz caelestia-shell-70496b402df73a2dc5af749b9e471848e6ac1239.tar.bz2 caelestia-shell-70496b402df73a2dc5af749b9e471848e6ac1239.zip | |
Merge branch 'caelestia-dots:main' into main
Diffstat (limited to 'config')
| -rw-r--r-- | config/BarConfig.qml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/BarConfig.qml b/config/BarConfig.qml index 34819b1..daa2b34 100644 --- a/config/BarConfig.qml +++ b/config/BarConfig.qml @@ -7,6 +7,7 @@ JsonObject { property ScrollActions scrollActions: ScrollActions {} property Popouts popouts: Popouts {} property Workspaces workspaces: Workspaces {} + property ActiveWindow activeWindow: ActiveWindow {} property Tray tray: Tray {} property Status status: Status {} property Clock clock: Clock {} @@ -78,6 +79,10 @@ JsonObject { property list<var> specialWorkspaceIcons: [] } + component ActiveWindow: JsonObject { + property bool inverted: false + } + component Tray: JsonObject { property bool background: false property bool recolour: false |