diff --git a/default/quickshell/omarchy-shell/plugins/bar/Bar.qml b/default/quickshell/omarchy-shell/plugins/bar/Bar.qml index 0a4bc253..dfaacdde 100644 --- a/default/quickshell/omarchy-shell/plugins/bar/Bar.qml +++ b/default/quickshell/omarchy-shell/plugins/bar/Bar.qml @@ -1405,8 +1405,8 @@ Item { component WorkspacesModule: GridLayout { columns: root.vertical ? 1 : root.workspaceIds().length - columnSpacing: root.vertical ? 0 : 3 - rowSpacing: root.vertical ? 3 : 0 + columnSpacing: root.vertical ? 0 : 2 + rowSpacing: root.vertical ? 2 : 0 Repeater { model: root.workspaceIds() @@ -1422,7 +1422,7 @@ Item { opacity: occupied || modelData <= 5 || focused ? 1 : 0.5 horizontalMargin: 6 verticalPadding: 6 - fixedWidth: root.vertical ? root.barSize : 24 + fixedWidth: root.vertical ? root.barSize : 22 fixedHeight: root.barSize onPressed: function() { root.focusWorkspace(modelData) } } diff --git a/default/quickshell/omarchy-shell/plugins/bar/widgets/audioPanel.qml b/default/quickshell/omarchy-shell/plugins/bar/widgets/audioPanel.qml index 196ce135..27fad9b8 100644 --- a/default/quickshell/omarchy-shell/plugins/bar/widgets/audioPanel.qml +++ b/default/quickshell/omarchy-shell/plugins/bar/widgets/audioPanel.qml @@ -174,7 +174,7 @@ Item { anchors.fill: parent bar: root.bar text: root.outputIcon() - fontSize: 14 + fontSize: 12 tooltipText: root.sink ? root.nodeLabel(root.sink) + " · " + Math.round(root.outputVolume * 100) + "%" : "No audio" onPressed: function(b) { diff --git a/default/quickshell/omarchy-shell/plugins/bar/widgets/controlCenter.qml b/default/quickshell/omarchy-shell/plugins/bar/widgets/controlCenter.qml index b23250df..82297c7e 100644 --- a/default/quickshell/omarchy-shell/plugins/bar/widgets/controlCenter.qml +++ b/default/quickshell/omarchy-shell/plugins/bar/widgets/controlCenter.qml @@ -144,7 +144,7 @@ Item { anchors.fill: parent bar: root.bar text: "󰙪" - fontSize: 14 + fontSize: 12 tooltipText: "Quick Settings" onPressed: function() { root.popupOpen = !root.popupOpen } }