diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2025-08-31 21:57:00 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2025-08-31 21:57:00 +0200 |
commit | 466ce70f96f8bdde32260f6951c5cbb62cfc02a7 (patch) | |
tree | 3d3120f6a1ace487d2db5a024411a467d55b9632 /accounts/gkleen@sif/shell/quickshell/shell.qml | |
parent | 828893e930886872fcf612bc8958d33fee73b5df (diff) | |
download | nixos-466ce70f96f8bdde32260f6951c5cbb62cfc02a7.tar nixos-466ce70f96f8bdde32260f6951c5cbb62cfc02a7.tar.gz nixos-466ce70f96f8bdde32260f6951c5cbb62cfc02a7.tar.bz2 nixos-466ce70f96f8bdde32260f6951c5cbb62cfc02a7.tar.xz nixos-466ce70f96f8bdde32260f6951c5cbb62cfc02a7.zip |
...
Diffstat (limited to 'accounts/gkleen@sif/shell/quickshell/shell.qml')
-rw-r--r-- | accounts/gkleen@sif/shell/quickshell/shell.qml | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/accounts/gkleen@sif/shell/quickshell/shell.qml b/accounts/gkleen@sif/shell/quickshell/shell.qml index 2abd1fef..4934cd4d 100644 --- a/accounts/gkleen@sif/shell/quickshell/shell.qml +++ b/accounts/gkleen@sif/shell/quickshell/shell.qml | |||
@@ -8,8 +8,16 @@ ShellRoot { | |||
8 | Variants { | 8 | Variants { |
9 | model: Quickshell.screens | 9 | model: Quickshell.screens |
10 | 10 | ||
11 | delegate: Bar { | 11 | delegate: Scope { |
12 | modelData: item | 12 | id: screenScope |
13 | |||
14 | required property var modelData | ||
15 | |||
16 | Bar { | ||
17 | id: bar | ||
18 | |||
19 | screen: screenScope.modelData | ||
20 | } | ||
13 | } | 21 | } |
14 | } | 22 | } |
15 | } | 23 | } |