1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-05-04 03:22:12 -04:00
This commit is contained in:
bbedward
2026-05-01 17:06:27 -04:00
parent 339481893b
commit a04478227f
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
}
}
}