16 lines
389 B
QML
16 lines
389 B
QML
import QtQuick
|
|
import Quickshell
|
|
pragma Singleton
|
|
|
|
Singleton {
|
|
id: root
|
|
|
|
readonly property string primary: "Sour Gummy Light"
|
|
readonly property string nerd: "Meslo LGM Nerd Font Mono"
|
|
readonly property string sans: "Noto Sans"
|
|
readonly property int small: 10
|
|
readonly property int medium: 12
|
|
readonly property int large: 14
|
|
readonly property int icon: 14
|
|
}
|