blob: 83fda2740d42bd8d498e3c1e5c0ffaccd1c40c51 (
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
25
26
27
28
29
30
31
32
33
34
35
|
pragma Singleton
import QtQuick
import Quickshell
Singleton {
id: root
readonly property var controls: QtObject {
readonly property int padding: 5
readonly property int spacing: 10
readonly property int radius: 0
readonly property int barHeight: 15
readonly property int iconSize: 13
readonly property string terminal: "alacritty"
}
readonly property var font: QtObject {
readonly property font regular: Qt.font({
family: "Dejavu Sans Mono",
pointSize: 10
})
readonly property font bold: Qt.font({
family: "Dejavu Sans Mono",
pointSize: 10,
weight: 800
})
}
readonly property var colors: QtObject {
readonly property string bg: "#181818"
readonly property string fg: "#e4e4ef"
readonly property string comment: "#cc8c3c"
readonly property string special: "#96a6c8"
readonly property string urgent: "#c73c3f"
readonly property string shadow: "#101010"
}
}
|