blob: 1b5a852b3fbed6c5889bb5e9c8e0abafa6ed872c (
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 defaultExpireTimeout: 3000
readonly property Sizes sizes: Sizes {}
component Sizes: QtObject {
readonly property int width: 400
readonly property int image: 50
readonly property int badge: 20
}
}
|