feat: add a provider for mpris data

This commit is contained in:
Nydragon 2024-09-28 01:12:56 +02:00
parent eb4a7110bb
commit 9133fa6435
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g

22
src/provider/Player.qml Normal file
View file

@ -0,0 +1,22 @@
pragma Singleton
import Quickshell
import Quickshell.Services.Mpris
import QtQuick
Singleton {
id: player
property MprisPlayer current: player.all[player.index]
property var all: Mpris.players.values
property int index: Mpris.players.values.findIndex(p => p.playbackState === MprisPlaybackState.Playing)
property var next: () => {
player.index = (player.index + 1) % all.length;
}
property var prev: () => {
const newInd = player.index - 1;
player.index = newInd < 0 ? all.length - 1 : newInd;
}
property bool isPlaying: current?.playbackState === MprisPlaybackState.Playing
}