summaryrefslogtreecommitdiff
path: root/accounts/gkleen@sif/shell/quickshell/shell.qml
blob: 4934cd4dea4bdecc50660fa0c4bde8329d224fd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//@ pragma UseQApplication

import Quickshell

ShellRoot {
  settings.watchFiles: false

  Variants {
    model: Quickshell.screens

    delegate: Scope {
      id: screenScope

      required property var modelData

      Bar {
        id: bar

        screen: screenScope.modelData
      }
    }
  }
}