add system logo

This commit is contained in:
Benjamin Palko 2025-07-19 23:30:12 -04:00
parent 375ded5e81
commit a5b62b4af8
2 changed files with 13 additions and 0 deletions

View file

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

View file

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