blob: fd56f1b604c4478383429d38706fad8613869877 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
import "root:/widgets"
import "root:/services"
import "root:/config"
import "root:/modules/osd" as Osd
import Quickshell
import QtQuick
Item {
id: root
required property ShellScreen screen
readonly property Osd.Wrapper osd: osd
anchors.fill: parent
anchors.margins: BorderConfig.thickness
Osd.Wrapper {
id: osd
screen: root.screen
anchors.verticalCenter: parent.verticalCenter
anchors.right: parent.right
}
}
|