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 283e114..65236bd 100644 --- a/config/BarConfig.qml +++ b/config/BarConfig.qml @@ -4,6 +4,7 @@ JsonObject { property bool persistent: true property bool showOnHover: true property int dragThreshold: 20 + property ScrollActions scrollActions: ScrollActions {} property Workspaces workspaces: Workspaces {} property Tray tray: Tray {} property Status status: Status {} @@ -53,6 +54,12 @@ JsonObject { } ] + component ScrollActions: JsonObject { + property bool workspaces: true + property bool volume: true + property bool brightness: true + } + component Workspaces: JsonObject { property int shown: 5 property bool activeIndicator: true |