forked from Shinonome/dots-hyprland
43 lines
1.1 KiB
QML
43 lines
1.1 KiB
QML
import qs
|
|
import qs.services
|
|
import qs.modules.common
|
|
import qs.modules.common.widgets
|
|
import qs.modules.common.functions
|
|
import QtQuick
|
|
import Quickshell
|
|
import Quickshell.Wayland
|
|
import Quickshell.Hyprland
|
|
|
|
Scope {
|
|
id: root
|
|
|
|
Loader {
|
|
active: PolkitService.active
|
|
sourceComponent: Variants {
|
|
model: Quickshell.screens
|
|
delegate: PanelWindow {
|
|
id: panelWindow
|
|
required property var modelData
|
|
screen: modelData
|
|
|
|
anchors {
|
|
top: true
|
|
left: true
|
|
right: true
|
|
bottom: true
|
|
}
|
|
|
|
color: "transparent"
|
|
WlrLayershell.namespace: "quickshell:polkit"
|
|
WlrLayershell.keyboardFocus: WlrKeyboardFocus.OnDemand
|
|
WlrLayershell.layer: WlrLayer.Overlay
|
|
exclusionMode: ExclusionMode.Ignore
|
|
|
|
PolkitContent {
|
|
anchors.fill: parent
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|