summaryrefslogtreecommitdiff
path: root/config/LauncherConfig.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-02 13:46:44 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-02 13:46:44 +1000
commit8e8ea841dec20b587e425412ff1fd452eeab88a7 (patch)
treef558af3f276b6804e51991546f55369b4471a2a0 /config/LauncherConfig.qml
parentbar: optional active ws indicator (diff)
downloadcaelestia-shell-8e8ea841dec20b587e425412ff1fd452eeab88a7.tar.gz
caelestia-shell-8e8ea841dec20b587e425412ff1fd452eeab88a7.tar.bz2
caelestia-shell-8e8ea841dec20b587e425412ff1fd452eeab88a7.zip
feat: launcher base
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
+ }
+}