2023-01-15 04:52:47 +00: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 22:08:25 +00:00
|
|
|
err := commands.SetVolume(ctx, 0)
|
2023-01-15 04:52:47 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|