Compare commits

..

No commits in common. "9aa8084df92fabeb3e80e1854c0729b46b8b97c9" and "375ded5e814f5e7d1f2dc089bda5f3952492eae5" have entirely different histories.

4 changed files with 3 additions and 15 deletions

View file

@ -28,6 +28,7 @@ Singleton {
id: clock
property int fontSize: 14
property int width: 130
property int height: 30
property int horizontalPadding: 8
property int verticalPadding: 6
@ -37,7 +38,6 @@ Singleton {
id: workspace
property int spacing: 5
property int iconSize: 18
property int width: 30
property int height: 30
property int verticalPadding: 6

View file

@ -49,10 +49,6 @@ Scope {
spacing: Dimensions.bar.spacing
SystemLogo {
anchors.verticalCenter: parent.verticalCenter
}
Workspaces {
anchors.verticalCenter: parent.verticalCenter
}

View file

@ -7,11 +7,12 @@ import "../../../config/"
Item {
id: root
implicitWidth: childrenRect.width
implicitWidth: Dimensions.clock.width
implicitHeight: Dimensions.clock.height
StyledLabel {
anchors.fill: parent
anchors.centerIn: parent
}
StyledText {

View file

@ -1,9 +0,0 @@
import QtQuick
import QtQuick.Controls
Button {
icon.name: "archlinux-logo"
icon.height: 18
icon.width: 18
background: undefined
}