diff --git a/quickshell/.config/quickshell/shell.qml b/quickshell/.config/quickshell/shell.qml new file mode 100644 index 0000000..5bf742a --- /dev/null +++ b/quickshell/.config/quickshell/shell.qml @@ -0,0 +1,28 @@ +pragma ComponentBehavior: Bound + +import QtQuick +import Quickshell + +ShellRoot { + Variants { + model: Quickshell.screens + PanelWindow { + id : panel + required property ShellScreen modelData + property string monitorName: modelData.name + screen: modelData + anchors { + right : true + top : true + left : true + } + implicitHeight: 32 + color : "#2b1618" + Text { + anchors.centerIn: parent + text : "Hello from " + panel.monitorName + color : '#f2e4d8' + } + } + } +} \ No newline at end of file