From ada0faf1d1b7420a754fbdff33cdff7da31be16a Mon Sep 17 00:00:00 2001 From: Gabriel Brown Date: Tue, 25 Aug 2026 11:20:34 -0400 Subject: [PATCH] Let the sidebar breathe: fourteen categories deserve legible names Claude-Session: https://claude.ai/code/session_01Ms2FbjQy31TVf3CEvQhGM8 --- .../quickshell/modules/settings/SettingsSidebar.qml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config/dot/quickshell/modules/settings/SettingsSidebar.qml b/config/dot/quickshell/modules/settings/SettingsSidebar.qml index 321043b..3ceaee5 100644 --- a/config/dot/quickshell/modules/settings/SettingsSidebar.qml +++ b/config/dot/quickshell/modules/settings/SettingsSidebar.qml @@ -225,7 +225,7 @@ Rectangle { // System stays highlighted while you sit on Storage. readonly property bool active: SettingsRoutes.categoryOf(root.selectedPage).page === modelData.page width: parent.width - height: 40 + height: 46 radius: 10 color: navItem.active ? Theme.alpha(Theme.accent, 0.17) @@ -235,7 +235,7 @@ Rectangle { Rectangle { width: 2 - height: 18 + height: 22 radius: 1 anchors.left: parent.left anchors.verticalCenter: parent.verticalCenter @@ -250,23 +250,23 @@ Rectangle { anchors.left: parent.left anchors.leftMargin: 13 anchors.verticalCenter: parent.verticalCenter - width: 25 + width: 30 text: navItem.modelData.icon color: navItem.active ? Theme.accent : Theme.fgDim font.family: Theme.fontMono - font.pixelSize: 15 + font.pixelSize: 18 } Text { anchors.left: parent.left - anchors.leftMargin: 47 + anchors.leftMargin: 52 anchors.right: parent.right anchors.rightMargin: 9 anchors.verticalCenter: parent.verticalCenter text: navItem.modelData.label color: navItem.active ? Theme.fg : Theme.fgDim font.family: Theme.fontFamily - font.pixelSize: Theme.fontSize + font.pixelSize: 15 font.weight: navItem.active ? Font.Medium : Font.Normal elide: Text.ElideRight }