mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-05-02 02:22:06 -04:00
18 lines
221 B
QML
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
|
|
}
|
|
}
|