shell.qml 638 B

12345678910111213141516171819202122232425262728
  1. import Quickshell
  2. import Quickshell.Wayland
  3. import QtQuick
  4. ShellRoot {
  5. Variants {
  6. model: Quickshell.screens
  7. delegate: PanelWindow {
  8. required property var modelData
  9. screen: modelData
  10. anchors.bottom: true
  11. anchors.left: true
  12. anchors.right: true
  13. implicitHeight: 32
  14. color: "#1a1b26"
  15. Text {
  16. anchors.centerIn: parent
  17. text: "Monitor Profile: " + (parent.screen ? parent.screen.name : "Initializing...")
  18. color: "#a9b1d6"
  19. }
  20. }
  21. }
  22. }