diff options
Diffstat (limited to 'config/quickshell/overview/common/Config.qml')
| -rw-r--r-- | config/quickshell/overview/common/Config.qml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/config/quickshell/overview/common/Config.qml b/config/quickshell/overview/common/Config.qml new file mode 100644 index 00000000..48601dd3 --- /dev/null +++ b/config/quickshell/overview/common/Config.qml @@ -0,0 +1,22 @@ +pragma Singleton +pragma ComponentBehavior: Bound + +import QtQuick +import Quickshell + +Singleton { + id: root + + property QtObject options: QtObject { + property QtObject overview: QtObject { + property int rows: 2 + property int columns: 5 + property real scale: 0.16 + property bool enable: true + } + + property QtObject hacks: QtObject { + property int arbitraryRaceConditionDelay: 150 + } + } +} |
