add position to the README and phrase what it does better
This commit is contained in:
parent
7e09c522df
commit
a8a70a7eb9
|
@ -59,6 +59,7 @@ Download and display album art or display embedded album art
|
||||||
optional arguments:
|
optional arguments:
|
||||||
-h, --help show this help message and exit
|
-h, --help show this help message and exit
|
||||||
--size what size to display the album art in
|
--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
|
--music_dir the music directory which MPD plays from
|
||||||
--silent dont show the output
|
--silent dont show the output
|
||||||
--version show the version of kunst you are using
|
--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
|
# The size of the album art to be displayed
|
||||||
export KUNST_SIZE="250x250"
|
export KUNST_SIZE="250x250"
|
||||||
|
|
||||||
|
# The position where the album art should be displayed
|
||||||
|
export KUNST_POSITION="+0+0"
|
||||||
|
|
||||||
# Where your music is located
|
# Where your music is located
|
||||||
export KUNST_MUSIC_DIR="/home/username/Music/"
|
export KUNST_MUSIC_DIR="/home/username/Music/"
|
||||||
```
|
```
|
||||||
|
|
2
kunst
2
kunst
|
@ -25,7 +25,7 @@ show_help() {
|
||||||
echo "optional arguments:"
|
echo "optional arguments:"
|
||||||
echo " -h, --help show this help message and exit"
|
echo " -h, --help show this help message and exit"
|
||||||
echo " --size what size to display the album art in"
|
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 " --music_dir the music directory which MPD plays from"
|
||||||
echo " --silent dont show the output"
|
echo " --silent dont show the output"
|
||||||
echo " --version show the version of kunst you are using"
|
echo " --version show the version of kunst you are using"
|
||||||
|
|
Loading…
Reference in New Issue