chore: misc
This commit is contained in:
parent
f4fa7deadf
commit
9a87f66962
3 changed files with 13 additions and 12 deletions
|
@ -13,6 +13,9 @@ ShellRoot {
|
|||
}
|
||||
}
|
||||
|
||||
LazyLoader {
|
||||
id: loader
|
||||
|
||||
Component.onCompleted: {
|
||||
Quickshell.reloadCompleted.connect(() => loader.active = false);
|
||||
Quickshell.reloadFailed.connect(e => {
|
||||
|
@ -21,9 +24,6 @@ ShellRoot {
|
|||
});
|
||||
}
|
||||
|
||||
LazyLoader {
|
||||
id: loader
|
||||
|
||||
property string message: ""
|
||||
|
||||
PanelWindow {
|
||||
|
|
|
@ -26,17 +26,19 @@ BRectangle {
|
|||
orientation: Qt.Horizontal
|
||||
snapMode: ListView.SnapOneItem
|
||||
spacing: 10
|
||||
delegate: Item {
|
||||
delegate: BRectangle {
|
||||
id: card
|
||||
required property var modelData
|
||||
property MprisPlayer player: modelData
|
||||
|
||||
width: mprisSmall.width
|
||||
height: mprisSmall.height
|
||||
radius: 15
|
||||
|
||||
BlurredImage {
|
||||
source: card.player?.trackArtUrl ?? ""
|
||||
anchors.fill: parent
|
||||
radius: 15
|
||||
radius: parent.radius
|
||||
}
|
||||
|
||||
RowLayout {
|
||||
|
@ -104,7 +106,7 @@ BRectangle {
|
|||
size: 20
|
||||
}
|
||||
BIconButton {
|
||||
source: Quickshell.iconPath(card.player.playbackState === MprisPlaybackState.Playing ? "media-playback-pause" : "media-playback-start")
|
||||
source: Quickshell.iconPath(card.player?.playbackState === MprisPlaybackState.Playing ? "media-playback-pause" : "media-playback-start")
|
||||
onClicked: card.player?.togglePlaying()
|
||||
size: 20
|
||||
}
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
import QtQuick
|
||||
import Quickshell
|
||||
import Quickshell.Io
|
||||
import Quickshell.Hyprland
|
||||
import Quickshell.I3
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue