From ff810a344d85cbfaf3c2642ebae8b53a642612a8 Mon Sep 17 00:00:00 2001 From: Laurence Willetts Date: Thu, 4 Feb 2016 08:58:18 +0000 Subject: [PATCH] README.md: finish useful tricks section --- README.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2da0e0e9..74e79566 100644 --- a/README.md +++ b/README.md @@ -107,11 +107,25 @@ To stop playback ala mpc style, try: mpvc -p -t 0 ``` +To decrease the relative values of the playback-time, volume or track +position, append a minus symbol to the value: + +```bash +mpvc -v -10 +``` + The -r option can be used to skip however many tracks in a direction, so long as it's in the playlist's range: ```bash -mpvc -r 10 +mpvc -r 5 +``` + +The -r option can also be combined with -P to always start playing a file +after it's changed. + +```bash +mpvc -r 1 -P ``` TODO