diff --git a/kodi.controller.sh b/kodi.controller.sh index 637e766..add07a7 100755 --- a/kodi.controller.sh +++ b/kodi.controller.sh @@ -40,13 +40,17 @@ EXAMPLES : - Start Kodi if not already running ${PROGNAME} - - Send default action (${USER_MULTIMEDIA_COMMAND_DEFAULT}) to Kodi instance + - Stop current current media + ${PROGNAME} --command stop + + - Send default action (${USER_MULTIMEDIA_COMMAND_DEFAULT}) to Kodi instance ${PROGNAME} OPTIONS : -c,--command Send a command to running Kodi. Available commands : * toggle, play, pause + * stop * next * previous * random, party, partymode @@ -96,6 +100,9 @@ define_vars() { # {{{ toggle|play|pause ) ## Toggle current play KODI_ACTION="PlayerControl(play)" ;; + stop ) ## Stop current play + KODI_ACTION="PlayerControl(stop)" + ;; next ) ## Next element in the playlist KODI_ACTION="PlayerControl(next)" ;;