import Quickshell import QtQuick Variants { model: Quickshell.screens; delegate: Component { PanelWindow { id: root required property var modelData screen: modelData property string fontFamily: "FiraCode Nerd Font" property int fontSize: 14 anchors { top: true left: true right: true } implicitHeight: 36 + 8 color: "transparent" Rectangle { anchors { fill: parent topMargin: 8 leftMargin: 8 rightMargin: 8 } implicitHeight: 36 color: "transparent" BarWorkspaces {} BarMusic {} BarStatus {} } } } }