add PLAYER to --order, remove binary from repo
continuous-integration/drone/push Build is passing Details

also added more prominent download links to the readme.
This commit is contained in:
Harvey Tindall 2021-05-16 23:28:23 +01:00
parent 3aec82c40c
commit 51c7a983a0
Signed by: hrfee
GPG Key ID: BBC65952848FB1A2
4 changed files with 9 additions and 1 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
./main
./waybar-mpris

View File

@ -3,6 +3,9 @@
<img src="images/cropped.gif" style="width: 100%;" alt="bar gif"></img>
</p>
##### Downloads:
##### [binary](https://builds2.hrfee.pw/view/hrfee/waybar-mpris) | [aur](https://aur.archlinux.org/packages/waybar-mpris-git/)
a waybar component/utility for displaying and controlling MPRIS2 compliant media players individually, inspired by [waybar-media](https://github.com/yurihs/waybar-media).
MPRIS2 is widely supported, so this component should work with:

View File

@ -79,6 +79,10 @@ func playerJSON(p *mpris2.Player) string {
if pos != "" && SHOW_POS {
items = append(items, pos)
}
case "PLAYER":
if p.Name != "" {
items = append(items, p.Name)
}
}
}
if len(items) == 0 {
@ -318,7 +322,7 @@ func main() {
flag.StringVar(&PLAY, "play", PLAY, "Play symbol/text to use.")
flag.StringVar(&PAUSE, "pause", PAUSE, "Pause symbol/text to use.")
flag.StringVar(&SEP, "separator", SEP, "Separator string to use between artist, album, and title.")
flag.StringVar(&ORDER, "order", ORDER, "Element order.")
flag.StringVar(&ORDER, "order", ORDER, "Element order. An extra \"PLAYER\" element is also available.")
flag.BoolVar(&AUTOFOCUS, "autofocus", AUTOFOCUS, "Auto switch to currently playing music players.")
flag.BoolVar(&SHOW_POS, "position", SHOW_POS, "Show current position between brackets, e.g (04:50/05:00)")
flag.BoolVar(&INTERPOLATE, "interpolate", INTERPOLATE, "Interpolate track position (helpful for players that don't update regularly, e.g mpDris2)")

Binary file not shown.