1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-30 09:32:05 -04:00
Files
DankMaterialShell/quickshell/Modules/Frame/FrameInstance.qml
2026-04-28 00:06:09 -04:00

18 lines
221 B
QML

pragma ComponentBehavior: Bound
import QtQuick
Item {
id: root
required property var screen
FrameWindow {
targetScreen: root.screen
}
FrameExclusions {
screen: root.screen
}
}