style changes, workspace improvement and other shit

This commit is contained in:
lucy 2026-01-19 11:12:07 +01:00
parent 64d219b4bd
commit d2ea695644
3 changed files with 9 additions and 8 deletions

View File

@ -51,13 +51,13 @@ Variants {
Row { Row {
id: rightStuff id: rightStuff
rightPadding: 10 rightPadding: 5
spacing: 10 spacing: 10
anchors.right: parent.right anchors.right: parent.right
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
Volume {} Volume {}
Battery {} Battery {}
SystemTray {} SysTray {}
} }
} }
} }

View File

@ -89,13 +89,13 @@ Loader {
id: rawProfileIcon id: rawProfileIcon
anchors.fill: parent anchors.fill: parent
source: Quickshell.iconPath(root.getProfileIcon()) source: Quickshell.iconPath(root.getProfileIcon())
visible: false // 🤫 Shh! Hide the dark original visible: false
} }
ColorOverlay { ColorOverlay {
anchors.fill: parent anchors.fill: parent
source: rawProfileIcon source: rawProfileIcon
color: "white" // The magic dye! color: Colors.foreground
} }
} }
} }

View File

@ -5,8 +5,9 @@ import "../../settings/"
Item { Item {
id: root id: root
implicitWidth: trayRow.implicitWidth implicitWidth: trayRow.implicitWidth + 5
implicitHeight: Settings.config.barHeight implicitHeight: Settings.config.barHeight
readonly property var count: trayRepeater.count
visible: trayRepeater.count > 0 visible: trayRepeater.count > 0
Row { Row {