fixed minor error

This commit is contained in:
Siddharth Dushantha 2020-03-28 19:51:16 +01:00 committed by GitHub
parent d257265a4c
commit b577b66ec2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

4
kunst
View File

@ -7,7 +7,7 @@
# Dependencies: sxiv, imagemagick, bash, ffmpeg, mpc, jq, mpd # Dependencies: sxiv, imagemagick, bash, ffmpeg, mpc, jq, mpd
VERSION=1.2.8 VERSION=1.2.9
COVER=/tmp/kunst.jpg COVER=/tmp/kunst.jpg
MUSIC_DIR=~/Music/ MUSIC_DIR=~/Music/
SIZE=250x250 SIZE=250x250
@ -166,7 +166,7 @@ pre_exit() {
# because if the user quits sxiv before they # because if the user quits sxiv before they
# exit kunst, an error will be shown # exit kunst, an error will be shown
# from kill and we dont want that # from kill and we dont want that
kill -9 "$(cat /tmp/kunst.pid) &> /dev/null" kill -9 "$(cat /tmp/kunst.pid)" &>/dev/null
} }