diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2022-03-30 13:20:29 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2022-03-30 13:20:29 +0200 |
commit | 231b272f820445472f07f54796ceeb75c3d642c0 (patch) | |
tree | cf7b8d9724f7c362eaf858352c48925f6e6b5fa8 /src/c_player.go | |
parent | In progress (diff) | |
download | go2work-231b272f820445472f07f54796ceeb75c3d642c0.tar.gz go2work-231b272f820445472f07f54796ceeb75c3d642c0.tar.bz2 go2work-231b272f820445472f07f54796ceeb75c3d642c0.tar.xz go2work-231b272f820445472f07f54796ceeb75c3d642c0.tar.zst go2work-231b272f820445472f07f54796ceeb75c3d642c0.zip |
Good progress
Diffstat (limited to 'src/c_player.go')
-rw-r--r-- | src/c_player.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/c_player.go b/src/c_player.go index 623adaa..7729d8a 100644 --- a/src/c_player.go +++ b/src/c_player.go @@ -39,7 +39,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * go2work: src/c_player.go - * Wed Mar 30 01:18:12 CEST 2022 + * Wed Mar 30 13:20:13 CEST 2022 * Joe * * Funcs to play the file @@ -54,7 +54,7 @@ import ( "os/exec" ) -func exec_player(show_fortune bool, args ...string) { +func exec_player(show_fortune bool, player string, args ...string) { var cmd *exec.Cmd if show_fortune == true { fmt.Print("\n\n") @@ -64,7 +64,7 @@ func exec_player(show_fortune bool, args ...string) { cmd.Run() fmt.Println(out.String()) } - cmd = exec.Command(args[0], append(args[1:])...) + cmd = exec.Command(player, append(args[0:])...) err := cmd.Run(); if err != nil { log.Fatal(err) |