summaryrefslogtreecommitdiff
path: root/config/BarConfig.qml
blob: 0173f1812b71d8ce9e6e6cf05e25267cedbe25e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 floatingGap: 10
        readonly property int floatingGapLarge: 15
    }

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