summaryrefslogtreecommitdiff
path: root/config/LauncherConfig.qml
diff options
context:
space:
mode:
Diffstat (limited to 'config/LauncherConfig.qml')
-rw-r--r--config/LauncherConfig.qml12
1 files changed, 12 insertions, 0 deletions
diff --git a/config/LauncherConfig.qml b/config/LauncherConfig.qml
new file mode 100644
index 0000000..1b9efc0
--- /dev/null
+++ b/config/LauncherConfig.qml
@@ -0,0 +1,12 @@
+pragma Singleton
+
+import Quickshell
+import QtQuick
+
+Singleton {
+ readonly property Sizes sizes: Sizes {}
+
+ component Sizes: QtObject {
+ property int width: 600
+ }
+}