summaryrefslogtreecommitdiff
path: root/modules/bar/components/workspaces/Workspace.qml
diff options
context:
space:
mode:
Diffstat (limited to 'modules/bar/components/workspaces/Workspace.qml')
-rw-r--r--modules/bar/components/workspaces/Workspace.qml6
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/bar/components/workspaces/Workspace.qml b/modules/bar/components/workspaces/Workspace.qml
index e50f65c..dba0f86 100644
--- a/modules/bar/components/workspaces/Workspace.qml
+++ b/modules/bar/components/workspaces/Workspace.qml
@@ -15,7 +15,7 @@ Item {
readonly property bool isWorkspace: true // Flag for finding workspace children
// Unanimated prop for others to use as reference
- readonly property real size: childrenRect.height + (hasWindows ? Appearance.padding.normal : 0)
+ readonly property real size: childrenRect.height + (hasWindows ? Appearance.padding.smaller : 0)
readonly property int ws: groupOffset + index + 1
readonly property bool isOccupied: occupied[ws] ?? false
@@ -49,9 +49,10 @@ Item {
anchors.horizontalCenter: indicator.horizontalCenter
anchors.top: indicator.bottom
+ anchors.topMargin: -Config.bar.sizes.innerHeight / 10
sourceComponent: Column {
- spacing: Appearance.spacing.small
+ spacing: 0
add: Transition {
Anim {
@@ -81,6 +82,7 @@ Item {
MaterialIcon {
required property Hyprland.Client modelData
+ grade: 0
text: Icons.getAppCategoryIcon(modelData.wmClass, "terminal")
color: Colours.palette.m3onSurfaceVariant
}