From a5b62b4af8920ddd9df956a4f1ba66014317dc4c Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Sat, 19 Jul 2025 23:30:12 -0400 Subject: [PATCH] add system logo --- modules/bar/Bar.qml | 4 ++++ modules/bar/components/SystemLogo.qml | 9 +++++++++ 2 files changed, 13 insertions(+) create mode 100644 modules/bar/components/SystemLogo.qml diff --git a/modules/bar/Bar.qml b/modules/bar/Bar.qml index 28a835c..66746aa 100644 --- a/modules/bar/Bar.qml +++ b/modules/bar/Bar.qml @@ -49,6 +49,10 @@ Scope { spacing: Dimensions.bar.spacing + SystemLogo { + anchors.verticalCenter: parent.verticalCenter + } + Workspaces { anchors.verticalCenter: parent.verticalCenter } diff --git a/modules/bar/components/SystemLogo.qml b/modules/bar/components/SystemLogo.qml new file mode 100644 index 0000000..56dd8ee --- /dev/null +++ b/modules/bar/components/SystemLogo.qml @@ -0,0 +1,9 @@ +import QtQuick +import QtQuick.Controls + +Button { + icon.name: "archlinux-logo" + icon.height: 18 + icon.width: 18 + background: undefined +}