From 11282f6abe32f9671dc0a7ce49d64bc4f2d79e6b Mon Sep 17 00:00:00 2001 From: Sven Fischer Date: Mon, 24 Nov 2025 09:52:09 +0100 Subject: bar/activewindow: add option to invert rotate (#922) * feat(activeWindow): Add rotation option to rotate counter-clockwise * feat(activeWindow): Change rotation to inverted boolean option * feat(activeWindow): Do not expose inverted property --- config/BarConfig.qml | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'config') 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 specialWorkspaceIcons: [] } + component ActiveWindow: JsonObject { + property bool inverted: false + } + component Tray: JsonObject { property bool background: false property bool recolour: false -- cgit v1.2.3-freya