summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2026-01-08 22:28:22 -0500
committerFreya Murphy <freya@freyacat.org>2026-01-22 08:31:55 -0500
commit786b1656fa2702a8919624d84950a7039fb5c97d (patch)
treed31d2af84e7fb7c53f83346a6419004fe758b9c0
parenthardcode single wallpaper (diff)
downloadcaelestia-shell-786b1656fa2702a8919624d84950a7039fb5c97d.tar.gz
caelestia-shell-786b1656fa2702a8919624d84950a7039fb5c97d.tar.bz2
caelestia-shell-786b1656fa2702a8919624d84950a7039fb5c97d.zip
only show active workspaces, fix colors
-rw-r--r--modules/bar/components/workspaces/Workspace.qml1
-rw-r--r--modules/dashboard/Performance.qml4
2 files changed, 3 insertions, 2 deletions
diff --git a/modules/bar/components/workspaces/Workspace.qml b/modules/bar/components/workspaces/Workspace.qml
index 3c8238b..374b347 100644
--- a/modules/bar/components/workspaces/Workspace.qml
+++ b/modules/bar/components/workspaces/Workspace.qml
@@ -26,6 +26,7 @@ ColumnLayout {
Layout.preferredHeight: size
spacing: 0
+ visible: Config.bar.workspaces.occupiedBg || root.isOccupied || root.activeWsId == root.ws
StyledText {
id: indicator
diff --git a/modules/dashboard/Performance.qml b/modules/dashboard/Performance.qml
index 5e00d89..f32d41e 100644
--- a/modules/dashboard/Performance.qml
+++ b/modules/dashboard/Performance.qml
@@ -92,8 +92,8 @@ RowLayout {
property color fg1: Colours.palette.m3primary
property color fg2: Colours.palette.m3secondary
- property color bg1: Colours.palette.m3primaryContainer
- property color bg2: Colours.palette.m3secondaryContainer
+ property color bg1: Qt.darker(Colours.palette.m3primaryContainer,1.5)
+ property color bg2: Qt.darker(Colours.palette.m3secondaryContainer,1.5)
implicitWidth: Config.dashboard.sizes.resourceSize * primaryMult
implicitHeight: Config.dashboard.sizes.resourceSize * primaryMult