lux-shell/modules/drawers/dashboard/Dashboard.qml
2025-09-05 13:44:26 -04:00

28 lines
484 B
QML

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