import Quickshell import QtQuick import QtQuick.Layouts import ".." PanelWindow { id: bottomBar property alias bottomRightContent: bottomRight.children property alias bottomCenterContent: bottomCenter.children property alias bottomLeftContent: bottomLeft.children aboveWindows: false anchors { bottom: true left: true right: true } implicitHeight: Resources.barsize.bottombar color: Resources.palette.bg RowLayout { //BOTTOM RIGHT id: bottomRight Item {Layout.rightMargin: 8} spacing: 2 layoutDirection: Qt.RightToLeft anchors { right: parent.right verticalCenter: parent.verticalCenter } } RowLayout { id: bottomCenter spacing: 2 anchors { horizontalCenter: parent.horizontalCenter verticalCenter: parent.verticalCenter } } RowLayout { id: bottomLeft spacing: 2 Item {Layout.leftMargin: 8} anchors { verticalCenter: parent.verticalCenter } } }