import "components" import "components/bluetooth" import "components/hyprland" import "components/notifications" import "components/tray" import qs.components import qs.config import QtQuick import QtQuick.Layouts StyledWrapperRectangle { id: root anchors.left: parent.left anchors.right: parent.right anchors.top: parent.top anchors.leftMargin: 8 anchors.rightMargin: 8 anchors.topMargin: 6 anchors.bottomMargin: 6 margin: 4 RowLayout { RowLayout { id: leftbar spacing: Styling.layout.spacing.base SystemLogo { implicitSize: 22 } Workspaces {} Tray {} } RowLayout { id: centerbar Layout.alignment: Qt.AlignHCenter spacing: Styling.layout.spacing.base Mpris {} } RowLayout { id: rightbar Layout.alignment: Qt.AlignRight spacing: Styling.layout.spacing.base Pywal {} Pipewire {} Caffeine {} Network {} Bluetooth {} Storage {} Memory {} Cpu {} Gpu {} Power {} Clock {} Notifications {} } } }