32 lines
584 B
QML
32 lines
584 B
QML
import Quickshell
|
|
import Quickshell.Wayland
|
|
|
|
import "Topbar"
|
|
|
|
PanelWindow {
|
|
anchors {
|
|
top: true
|
|
left: true
|
|
right: true
|
|
}
|
|
|
|
WlrLayershell.layer: WlrLayer.Top
|
|
WlrLayershell.focusable: false
|
|
WlrLayershell.keyboardFocus: WlrKeyboardFocus.None
|
|
WlrLayershell.namespace: "deltarune-quickshell"
|
|
|
|
mask: Region {}
|
|
|
|
visible: ShellStateManager.shellOpen
|
|
exclusionMode: ExclusionMode.Ignore
|
|
aboveWindows: true
|
|
focusable: false
|
|
|
|
implicitHeight: 182
|
|
color: "#000000"
|
|
|
|
Topbar {
|
|
manager: ShellStateManager
|
|
}
|
|
}
|