mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-24 12:22:09 +00:00
bar: cleaner width
This commit is contained in:
parent
f2a9641a95
commit
7f9dc76698
2 changed files with 8 additions and 5 deletions
|
|
@ -9,7 +9,6 @@ Item {
|
|||
required property var bar
|
||||
readonly property HyprlandMonitor monitor: Hyprland.monitorFor(bar.screen)
|
||||
readonly property Toplevel activeWindow: ToplevelManager.activeToplevel
|
||||
property int preferredWidth: Appearance.sizes.barPreferredSideSectionWidth
|
||||
|
||||
height: parent.height
|
||||
width: colLayout.width
|
||||
|
|
@ -19,21 +18,23 @@ Item {
|
|||
ColumnLayout {
|
||||
id: colLayout
|
||||
|
||||
anchors.centerIn: parent
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
spacing: -4
|
||||
|
||||
StyledText {
|
||||
Layout.fillWidth: true
|
||||
font.pixelSize: Appearance.font.pixelSize.smaller
|
||||
color: Appearance.colors.colSubtext
|
||||
Layout.preferredWidth: preferredWidth
|
||||
elide: Text.ElideRight
|
||||
text: activeWindow?.activated ? activeWindow?.appId : qsTr("Desktop")
|
||||
}
|
||||
|
||||
StyledText {
|
||||
Layout.fillWidth: true
|
||||
font.pixelSize: Appearance.font.pixelSize.small
|
||||
color: Appearance.colors.colOnLayer0
|
||||
Layout.preferredWidth: preferredWidth
|
||||
elide: Text.ElideRight
|
||||
text: activeWindow?.activated ? activeWindow?.title : `${qsTr("Workspace")} ${monitor.activeWorkspace?.id}`
|
||||
}
|
||||
|
|
|
|||
|
|
@ -70,8 +70,10 @@ Scope {
|
|||
id: leftSection
|
||||
anchors.left: parent.left
|
||||
implicitHeight: barHeight
|
||||
width: (barRoot.width - middleSection.width) / 2
|
||||
|
||||
ActiveWindow {
|
||||
Layout.fillWidth: true
|
||||
bar: barRoot
|
||||
}
|
||||
}
|
||||
|
|
@ -134,7 +136,7 @@ Scope {
|
|||
id: rightSection
|
||||
anchors.right: parent.right
|
||||
implicitHeight: barHeight
|
||||
width: Appearance.sizes.barPreferredSideSectionWidth
|
||||
width: (barRoot.width - middleSection.width) / 2
|
||||
spacing: 5
|
||||
layoutDirection: Qt.RightToLeft
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue