26 lines
405 B
QML
26 lines
405 B
QML
pragma ComponentBehavior: Bound
|
|
|
|
import QtQuick
|
|
import Quickshell
|
|
import qs.services
|
|
|
|
Variants {
|
|
model: Screens.screens
|
|
|
|
Scope {
|
|
id: scope
|
|
|
|
required property ShellScreen modelData
|
|
|
|
Exclusions {
|
|
screen: scope.modelData
|
|
bar: content.bar
|
|
}
|
|
|
|
ContentWindow {
|
|
id: content
|
|
|
|
screen: scope.modelData
|
|
}
|
|
}
|
|
}
|