Add stop command
This commit is contained in:
		
							parent
							
								
									c71d322eee
								
							
						
					
					
						commit
						a9b8c5ca94
					
				|  | @ -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)" | ||||
| 			;; | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue