gospt/cmd/mute.go

23 lines
375 B
Go
Raw Normal View History

2023-01-14 20:52:47 -08:00
package cmd
import (
"github.com/spf13/cobra"
)
func init() {
rootCmd.AddCommand(muteCmd)
}
var muteCmd = &cobra.Command{
Use: "mute",
Short: "mutes playback",
Long: `Mutes the spotify device, playback will continue`,
RunE: func(cmd *cobra.Command, args []string) error {
2023-02-17 16:08:25 -06:00
err := commands.SetVolume(ctx, 0)
2023-01-14 20:52:47 -08:00
if err != nil {
return err
}
return nil
},
}