diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-01 18:30:53 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-01 18:30:53 +1000 |
| commit | f98036a30326582ac7c87835a1d3dd386b8d34f9 (patch) | |
| tree | 9bbf315c6533cd7f27fcda0a3c728f1ffc86b133 /config | |
| parent | dev: some cleanup (diff) | |
| download | caelestia-shell-f98036a30326582ac7c87835a1d3dd386b8d34f9.tar.gz caelestia-shell-f98036a30326582ac7c87835a1d3dd386b8d34f9.tar.bz2 caelestia-shell-f98036a30326582ac7c87835a1d3dd386b8d34f9.zip | |
feat: vertical bar actually works!!!
Diffstat (limited to 'config')
| -rw-r--r-- | config/BarConfig.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/BarConfig.qml b/config/BarConfig.qml index 99f7796..83186b6 100644 --- a/config/BarConfig.qml +++ b/config/BarConfig.qml @@ -7,7 +7,7 @@ import QtQuick Singleton { id: root - property bool vertical: false + property bool vertical: true property Preset preset: presets.pills readonly property Sizes sizes: preset.sizes @@ -26,9 +26,9 @@ Singleton { } component Workspaces: QtObject { - property int shown: 10 + property int shown: root.vertical ? 5 : 10 property bool rounded: true - property bool occupiedBg: true + property bool occupiedBg: false property bool showWindows: true property bool activeTrail: !showWindows // Doesn't work well with variable sized workspaces property string label: " " |