From b577b66ec26e3ccced2d005b5827ae2401017438 Mon Sep 17 00:00:00 2001 From: Siddharth Dushantha Date: Sat, 28 Mar 2020 19:51:16 +0100 Subject: [PATCH] fixed minor error --- kunst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kunst b/kunst index 0c23fad..fe81996 100755 --- a/kunst +++ b/kunst @@ -7,7 +7,7 @@ # Dependencies: sxiv, imagemagick, bash, ffmpeg, mpc, jq, mpd -VERSION=1.2.8 +VERSION=1.2.9 COVER=/tmp/kunst.jpg MUSIC_DIR=~/Music/ SIZE=250x250 @@ -166,7 +166,7 @@ pre_exit() { # because if the user quits sxiv before they # exit kunst, an error will be shown # from kill and we dont want that - kill -9 "$(cat /tmp/kunst.pid) &> /dev/null" + kill -9 "$(cat /tmp/kunst.pid)" &>/dev/null }