From b068ea5d1c6441d09e9baafe935fd62314a80d20 Mon Sep 17 00:00:00 2001 From: Siddharth Dushantha Date: Sat, 28 Mar 2020 19:38:48 +0100 Subject: [PATCH] fixed wrong dependency name I accidentally checked if imagemagick instead of convert. imagemagick is the package, but convert is one of the commands. --- kunst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kunst b/kunst index a79fd61..bb1b040 100755 --- a/kunst +++ b/kunst @@ -172,7 +172,7 @@ pre_exit() { main() { - dependencies=(sxiv imagemagick bash ffmpeg mpc jq mpd) + dependencies=(sxiv convert bash ffmpeg mpc jq mpd) for dependency in "${dependencies[@]}"; do type -p "$dependency" &>/dev/null || { echo "error: Could not find '${dependency}', is it installed?" >&2