gospt/cmd/unmute.go

23 lines
387 B
Go
Raw Normal View History

2023-01-15 04:52:47 +00:00
package cmd
import (
"github.com/spf13/cobra"
)
func init() {
rootCmd.AddCommand(unmuteCmd)
}
var unmuteCmd = &cobra.Command{
Use: "unmute",
Short: "unmutes playback",
Long: `unmutes 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, 100)
2023-01-15 04:52:47 +00:00
if err != nil {
return err
}
return nil
},
}