summaryrefslogtreecommitdiff
path: root/config/LauncherConfig.qml
blob: 2bf465ddca8780823d7361d9114c9641ae4a260c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pragma Singleton

import Quickshell
import QtQuick

Singleton {
    readonly property int maxShown: 8
    readonly property string actionPrefix: ">"
    readonly property Sizes sizes: Sizes {}

    component Sizes: QtObject {
        readonly property int width: 600
        readonly property int itemHeight: 57
    }
}