20 lines
345 B
QML
20 lines
345 B
QML
import Quickshell // for PanelWindow
|
|
import QtQuick // for Text
|
|
import "DeltaruneQuickshell"
|
|
|
|
PanelWindow {
|
|
anchors {
|
|
top: true
|
|
left: true
|
|
right: true
|
|
}
|
|
// exclusionMode:x ExclusionMode.Ignore
|
|
aboveWindows: true
|
|
focusable: false
|
|
|
|
implicitHeight: 182
|
|
color: "#000000"
|
|
|
|
DeltaruneTopbar {}
|
|
}
|