add optional position interpolation, escape ampersands
added --interpolate which will increment the track position if there hasnt been a change after a second. Kinda buggy, so disabled by default. Ampersands are escaped in the tooltip.
This commit is contained in:
parent
018e3ce34e
commit
b97a950582
18
main.go
18
main.go
@ -32,6 +32,7 @@ var knownBrowsers = map[string]string{
|
|||||||
type Player struct {
|
type Player struct {
|
||||||
player dbus.BusObject
|
player dbus.BusObject
|
||||||
fullName, name, title, artist, album string
|
fullName, name, title, artist, album string
|
||||||
|
position int64
|
||||||
pid uint32
|
pid uint32
|
||||||
playing, stopped bool
|
playing, stopped bool
|
||||||
metadata map[string]dbus.Variant
|
metadata map[string]dbus.Variant
|
||||||
@ -47,6 +48,7 @@ const (
|
|||||||
MATCH_PC = "type='signal',path='/org/mpris/MediaPlayer2',interface='org.freedesktop.DBus.Properties'"
|
MATCH_PC = "type='signal',path='/org/mpris/MediaPlayer2',interface='org.freedesktop.DBus.Properties'"
|
||||||
SOCK = "/tmp/waybar-mpris.sock"
|
SOCK = "/tmp/waybar-mpris.sock"
|
||||||
LOGFILE = "/tmp/waybar-mpris.log"
|
LOGFILE = "/tmp/waybar-mpris.log"
|
||||||
|
POLL = 1
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@ -57,6 +59,7 @@ var (
|
|||||||
AUTOFOCUS = false
|
AUTOFOCUS = false
|
||||||
COMMANDS = []string{"player-next", "player-prev", "next", "prev", "toggle", "list"}
|
COMMANDS = []string{"player-next", "player-prev", "next", "prev", "toggle", "list"}
|
||||||
SHOW_POS = false
|
SHOW_POS = false
|
||||||
|
INTERPOLATE = false
|
||||||
)
|
)
|
||||||
|
|
||||||
// NewPlayer returns a new player object.
|
// NewPlayer returns a new player object.
|
||||||
@ -155,6 +158,7 @@ func µsToString(µs int64) string {
|
|||||||
return fmt.Sprintf("%02d:%02d", minutes, seconds)
|
return fmt.Sprintf("%02d:%02d", minutes, seconds)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// inc is the increment in seconds to add if the player reports an identical position.
|
||||||
func (p *Player) Position() string {
|
func (p *Player) Position() string {
|
||||||
// position is in microseconds so we prob need int64 to be safe
|
// position is in microseconds so we prob need int64 to be safe
|
||||||
v := p.metadata["mpris:length"].Value()
|
v := p.metadata["mpris:length"].Value()
|
||||||
@ -176,6 +180,11 @@ func (p *Player) Position() string {
|
|||||||
if position == "" {
|
if position == "" {
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
if INTERPOLATE && position == µsToString(p.position) {
|
||||||
|
np := p.position + int64(POLL*1000000)
|
||||||
|
position = µsToString(np)
|
||||||
|
}
|
||||||
|
p.position = pos.Value().(int64)
|
||||||
return position + "/" + length
|
return position + "/" + length
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -235,10 +244,10 @@ func (p *Player) JSON() string {
|
|||||||
|
|
||||||
data["tooltip"] = fmt.Sprintf(
|
data["tooltip"] = fmt.Sprintf(
|
||||||
"%s\nby %s\n",
|
"%s\nby %s\n",
|
||||||
p.title,
|
strings.ReplaceAll(p.title, "&", "&"),
|
||||||
p.artist)
|
strings.ReplaceAll(p.artist, "&", "&"))
|
||||||
if p.album != "" {
|
if p.album != "" {
|
||||||
data["tooltip"] += "from " + p.album + "\n"
|
data["tooltip"] += "from " + strings.ReplaceAll(p.album, "&", "&") + "\n"
|
||||||
}
|
}
|
||||||
data["tooltip"] += "(" + p.name + ")"
|
data["tooltip"] += "(" + p.name + ")"
|
||||||
data["text"] = text
|
data["text"] = text
|
||||||
@ -374,6 +383,7 @@ func main() {
|
|||||||
flag.StringVar(&ORDER, "order", ORDER, "Element order.")
|
flag.StringVar(&ORDER, "order", ORDER, "Element order.")
|
||||||
flag.BoolVar(&AUTOFOCUS, "autofocus", AUTOFOCUS, "Auto switch to currently playing music players.")
|
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(&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)")
|
||||||
var command string
|
var command string
|
||||||
flag.StringVar(&command, "send", "", "send command to already runnning waybar-mpris instance. (options: "+strings.Join(COMMANDS, "/")+")")
|
flag.StringVar(&command, "send", "", "send command to already runnning waybar-mpris instance. (options: "+strings.Join(COMMANDS, "/")+")")
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
@ -517,7 +527,7 @@ func main() {
|
|||||||
if SHOW_POS {
|
if SHOW_POS {
|
||||||
go func() {
|
go func() {
|
||||||
for {
|
for {
|
||||||
time.Sleep(1000 * time.Millisecond)
|
time.Sleep(POLL * time.Second)
|
||||||
if len(players.list) != 0 {
|
if len(players.list) != 0 {
|
||||||
if players.list[players.current].playing {
|
if players.list[players.current].playing {
|
||||||
go fmt.Println(players.JSON())
|
go fmt.Println(players.JSON())
|
||||||
|
BIN
waybar-mpris
BIN
waybar-mpris
Binary file not shown.
Loading…
Reference in New Issue
Block a user