From f98036a30326582ac7c87835a1d3dd386b8d34f9 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Thu, 1 May 2025 18:30:53 +1000 Subject: feat: vertical bar actually works!!! --- config/BarConfig.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'config') 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: " " -- cgit v1.2.3-freya