summaryrefslogtreecommitdiff
path: root/config/BarConfig.qml
blob: 62f39342ff65f389d5dd58b57800108834f79495 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
pragma Singleton

import Quickshell
import QtQuick

Singleton {
    property bool vertical: false

    readonly property Sizes sizes: Sizes {}
    readonly property Workspaces workspaces: Workspaces {}

    component Sizes: QtObject {
        readonly property int height: 50
        readonly property int innerHeight: 30
        readonly property int floatingGap: 10
        readonly property int floatingGapLarge: 15
    }

    component Workspaces: QtObject {
        readonly property int shown: 10
        readonly property string style: ""
        readonly property bool occupiedBg: true
    }
}