33 lines
443 B
QML
33 lines
443 B
QML
import QtQuick
|
|
import Quickshell
|
|
import qs.Widgets
|
|
import qs.Theme
|
|
|
|
PanelWindow {
|
|
id: root
|
|
|
|
property var modelData
|
|
|
|
screen: modelData
|
|
implicitHeight: 36
|
|
color: "transparent"
|
|
|
|
anchors {
|
|
top: true
|
|
left: true
|
|
right: true
|
|
}
|
|
|
|
Item {
|
|
anchors.fill: parent
|
|
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
color: Theme.backgroundPrimary
|
|
layer.enabled: true
|
|
}
|
|
|
|
// Just testing
|
|
NoctaliaToggle {}
|
|
}
|
|
}
|