pragma ComponentBehavior: Bound import QtQuick import QtQuick.Layouts import Quickshell PanelWindow { id: root color: "transparent" anchors { top: true bottom: true left: true } width: 60 ColumnLayout { // anchors.fill: parent anchors.margins: 2 spacing: 2 anchors { left: parent.left right: parent.right top: parent.top margins: 2 } ClockWidget {} WorkspaceWidget { bar: root wsBaseIndex: root.screen.name == "DP-2" ? 11 : 1 } SysTray { bar: root } } }