lux-shell/modules/drawers/dashboard/Dashboard.qml
2025-08-31 15:48:14 -04:00

27 lines
469 B
QML

pragma ComponentBehavior: Bound
import qs.components
import qs.services
import QtQuick
import QtQuick.Layouts
StyledDrawer {
id: root
visible: Visibility.dashboard
StyledWrapperRectangle {
margin: 32
ColumnLayout {
spacing: 8
MprisPlayerSelector {
Layout.alignment: Qt.AlignHCenter
}
MprisController {
player: Mpris.active
}
}
}
}