mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-05 14:59:27 -05:00
4cbb0f23c6
Comment on Discussion When sdata/dist-arch/ Changes / comment_on_discussion (push) Waiting to run
29 lines
552 B
QML
29 lines
552 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import Quickshell
|
|
import qs
|
|
import qs.services
|
|
import qs.modules.common
|
|
import qs.modules.common.functions
|
|
import qs.modules.waffle.looks
|
|
|
|
WBarAttachedPanelContent {
|
|
id: root
|
|
|
|
contentItem: ColumnLayout {
|
|
anchors.centerIn: parent
|
|
spacing: 0
|
|
|
|
ActionCenterBody {}
|
|
|
|
Rectangle {
|
|
Layout.fillHeight: false
|
|
Layout.fillWidth: true
|
|
color: Looks.colors.bgPanelSeparator
|
|
implicitHeight: 1
|
|
}
|
|
|
|
ActionCenterFooter {}
|
|
}
|
|
}
|