diff options
Diffstat (limited to 'config')
| -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 |