Compare commits
2 commits
375ded5e81
...
9aa8084df9
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9aa8084df9 | ||
|
|
a5b62b4af8 |
4 changed files with 15 additions and 3 deletions
|
|
@ -28,7 +28,6 @@ Singleton {
|
||||||
id: clock
|
id: clock
|
||||||
|
|
||||||
property int fontSize: 14
|
property int fontSize: 14
|
||||||
property int width: 130
|
|
||||||
property int height: 30
|
property int height: 30
|
||||||
property int horizontalPadding: 8
|
property int horizontalPadding: 8
|
||||||
property int verticalPadding: 6
|
property int verticalPadding: 6
|
||||||
|
|
@ -38,6 +37,7 @@ Singleton {
|
||||||
id: workspace
|
id: workspace
|
||||||
|
|
||||||
property int spacing: 5
|
property int spacing: 5
|
||||||
|
property int iconSize: 18
|
||||||
property int width: 30
|
property int width: 30
|
||||||
property int height: 30
|
property int height: 30
|
||||||
property int verticalPadding: 6
|
property int verticalPadding: 6
|
||||||
|
|
|
||||||
|
|
@ -49,6 +49,10 @@ Scope {
|
||||||
|
|
||||||
spacing: Dimensions.bar.spacing
|
spacing: Dimensions.bar.spacing
|
||||||
|
|
||||||
|
SystemLogo {
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
}
|
||||||
|
|
||||||
Workspaces {
|
Workspaces {
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -7,12 +7,11 @@ import "../../../config/"
|
||||||
Item {
|
Item {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
implicitWidth: Dimensions.clock.width
|
implicitWidth: childrenRect.width
|
||||||
implicitHeight: Dimensions.clock.height
|
implicitHeight: Dimensions.clock.height
|
||||||
|
|
||||||
StyledLabel {
|
StyledLabel {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
anchors.centerIn: parent
|
|
||||||
}
|
}
|
||||||
|
|
||||||
StyledText {
|
StyledText {
|
||||||
|
|
|
||||||
9
modules/bar/components/SystemLogo.qml
Normal file
9
modules/bar/components/SystemLogo.qml
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
import QtQuick
|
||||||
|
import QtQuick.Controls
|
||||||
|
|
||||||
|
Button {
|
||||||
|
icon.name: "archlinux-logo"
|
||||||
|
icon.height: 18
|
||||||
|
icon.width: 18
|
||||||
|
background: undefined
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue