blob: a3c154f53770f09ab8eb150d26066ea3af8fd2c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
pragma Singleton
import Quickshell
import QtQuick
Singleton {
readonly property int maxShown: 8
readonly property int maxWallpapers: 9 // Warning: even numbers look bad
readonly property string actionPrefix: ">"
readonly property Sizes sizes: Sizes {}
readonly property bool allowDangerousActions: false // Allow actions that can change the system state, like shutdown, reboot and logout
component Sizes: QtObject {
readonly property int itemWidth: 600
readonly property int itemHeight: 57
readonly property int wallpaperWidth: 280
readonly property int wallpaperHeight: 200
}
}
|