12 lines
267 B
QML
12 lines
267 B
QML
pragma Singleton
|
|
|
|
import QtQuick
|
|
import Quickshell
|
|
import Quickshell.Services.Mpris
|
|
|
|
Singleton {
|
|
id: root
|
|
|
|
property list<MprisPlayer> players: Mpris.players.values
|
|
property MprisPlayer active: players.filter(player => player.isPlaying)[0] ?? players[0]
|
|
}
|