1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-05-04 11:32:12 -04:00
This commit is contained in:
bbedward
2026-05-01 17:06:27 -04:00
committed by purian23
parent 3640aaeb8f
commit ab46f78d22
3 changed files with 62 additions and 29 deletions

View File

@@ -2,15 +2,23 @@ pragma ComponentBehavior: Bound
import QtQuick
import Quickshell
import qs.Common
Variants {
id: root
model: Quickshell.screens
FrameInstance {
delegate: Loader {
id: instanceLoader
required property var modelData
screen: modelData
active: SettingsData.frameEnabled && SettingsData.isScreenInPreferences(instanceLoader.modelData, SettingsData.frameScreenPreferences)
asynchronous: false
sourceComponent: FrameInstance {
screen: instanceLoader.modelData
}
}
}