gospt/cmd/nowplaying.go

21 lines
470 B
Go
Raw Normal View History

2023-01-09 15:52:21 -08:00
package cmd
import (
"github.com/spf13/cobra"
)
func init() {
rootCmd.AddCommand(nowPlayingCmd)
}
var nowPlayingCmd = &cobra.Command{
2023-01-20 14:19:16 -08:00
Use: "nowplaying",
Aliases: []string{"now"},
Short: "Shows song and artist of currently playing song",
Long: `Shows song and artist of currently playing song, useful for scripting`,
2023-10-14 09:47:03 -07:00
Args: cobra.MatchAll(cobra.RangeArgs(0, 1)),
2023-01-09 15:52:21 -08:00
Run: func(cmd *cobra.Command, args []string) {
2023-10-14 09:47:03 -07:00
commands.NowPlaying(ctx, args)
2023-01-09 15:52:21 -08:00
},
}