add system logo

This commit is contained in:
Benjamin Palko 2025-07-19 23:30:12 -04:00
parent 375ded5e81
commit 4af55f8117
3 changed files with 12 additions and 1 deletions

View file

@ -15,7 +15,7 @@ Singleton {
component Bar: QtObject {
id: bar
property int spacing: 6
property int spacing: 8
property int border: 2
property int height: 50
property int verticalMargins: 4

View file

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

View file

@ -0,0 +1,6 @@
import Quickshell
import Quickshell.Widgets
IconImage {
source: Quickshell.iconPath("archlinux-logo")
}