diff options
Diffstat (limited to 'config')
| -rw-r--r-- | config/BarConfig.qml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config/BarConfig.qml b/config/BarConfig.qml index c8a8bba..3f9f94d 100644 --- a/config/BarConfig.qml +++ b/config/BarConfig.qml @@ -5,6 +5,7 @@ JsonObject { property bool showOnHover: true property int dragThreshold: 20 property Workspaces workspaces: Workspaces {} + property Status status: Status {} property Sizes sizes: Sizes {} component Workspaces: JsonObject { @@ -19,6 +20,13 @@ JsonObject { property string activeLabel: " " } + component Status: JsonObject { + property bool showAudio: false + property bool showNetwork: true + property bool showBluetooth: true + property bool showBattery: true + } + component Sizes: JsonObject { property int innerHeight: 30 property int windowPreviewSize: 400 |