diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-02 13:46:44 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-02 13:46:44 +1000 |
| commit | 8e8ea841dec20b587e425412ff1fd452eeab88a7 (patch) | |
| tree | f558af3f276b6804e51991546f55369b4471a2a0 /config | |
| parent | bar: optional active ws indicator (diff) | |
| download | caelestia-shell-8e8ea841dec20b587e425412ff1fd452eeab88a7.tar.gz caelestia-shell-8e8ea841dec20b587e425412ff1fd452eeab88a7.tar.bz2 caelestia-shell-8e8ea841dec20b587e425412ff1fd452eeab88a7.zip | |
feat: launcher base
Diffstat (limited to 'config')
| -rw-r--r-- | config/LauncherConfig.qml | 12 |
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 + } +} |