diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-17 00:44:00 +0800 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-17 00:44:00 +0800 |
| commit | 6e6db08726e3bc274594de6835a01fc10002def9 (patch) | |
| tree | 272dcaa27b96690c449cdf61c8e4e6ea21559f48 /config | |
| parent | launcher: fallback app icon (diff) | |
| download | caelestia-shell-6e6db08726e3bc274594de6835a01fc10002def9.tar.gz caelestia-shell-6e6db08726e3bc274594de6835a01fc10002def9.tar.bz2 caelestia-shell-6e6db08726e3bc274594de6835a01fc10002def9.zip | |
feat: dashboard
Diffstat (limited to 'config')
| -rw-r--r-- | config/DashboardConfig.qml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/config/DashboardConfig.qml b/config/DashboardConfig.qml new file mode 100644 index 0000000..a0b2106 --- /dev/null +++ b/config/DashboardConfig.qml @@ -0,0 +1,13 @@ +pragma Singleton + +import Quickshell +import QtQuick + +Singleton { + readonly property Sizes sizes: Sizes {} + + component Sizes: QtObject { + readonly property int tabIndicatorHeight: 3 + readonly property int tabIndicatorSpacing: 5 + } +} |