mirror of
https://github.com/beetbox/beets.git
synced 2025-12-09 18:12:19 +01:00
Example for play --args (#1532)
This commit is contained in:
parent
ab7e9d4db2
commit
315fe78f0c
1 changed files with 15 additions and 0 deletions
|
|
@ -51,3 +51,18 @@ Optional Arguments
|
|||
The ``--args`` (or ``-A``) flag to the ``play`` command lets you specify
|
||||
additional arguments for your player command. Options are inserted after the
|
||||
configured ``command`` string and before the playlist filename.
|
||||
|
||||
For example, if you have the plugin configured like this::
|
||||
|
||||
play:
|
||||
command: mplayer -quiet
|
||||
|
||||
and you occasionally want to shuffle the songs you play, you can type::
|
||||
|
||||
$ beet play --args -shuffle
|
||||
|
||||
to get beets to execute this command::
|
||||
|
||||
mplayer -quiet -shuffle /path/to/playlist.m3u
|
||||
|
||||
instead of the default.
|
||||
|
|
|
|||
Loading…
Reference in a new issue