diff --git a/README.md b/README.md index 14317a3..241de70 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,7 @@ Download and display album art or display embedded album art optional arguments: -h, --help show this help message and exit --size what size to display the album art in + --position The position where the album art should be displayed --music_dir the music directory which MPD plays from --silent dont show the output --version show the version of kunst you are using @@ -78,6 +79,9 @@ You can configure `kunst` through environment variables. # The size of the album art to be displayed export KUNST_SIZE="250x250" +# The position where the album art should be displayed +export KUNST_POSITION="+0+0" + # Where your music is located export KUNST_MUSIC_DIR="/home/username/Music/" ``` diff --git a/kunst b/kunst index 3413ebd..bd945a4 100755 --- a/kunst +++ b/kunst @@ -25,7 +25,7 @@ show_help() { echo "optional arguments:" echo " -h, --help show this help message and exit" echo " --size what size to display the album art in" - echo " --position where the album art should be located" + echo " --position The position where the album art should be displayed" echo " --music_dir the music directory which MPD plays from" echo " --silent dont show the output" echo " --version show the version of kunst you are using"