now playing

This commit is contained in:
abs3nt 2023-01-11 13:34:02 -08:00
parent 5d98ae43fd
commit 66518295a9
1 changed files with 4 additions and 0 deletions

View File

@ -406,6 +406,10 @@ func MainView(ctx *gctx.Context, client *spotify.Client) ([]list.Item, error) {
}
func InitMain(ctx *gctx.Context, client *spotify.Client, mode string) (tea.Model, error) {
playing, _ := client.PlayerCurrentlyPlaying(ctx)
if playing.Playing {
currentlyPlaying = "Now playing " + playing.Item.Name + " by " + playing.Item.Artists[0].Name
}
items := []list.Item{}
var err error
switch mode {