From ca20964b10139ce35ef52674d97fb918ce2a2882 Mon Sep 17 00:00:00 2001 From: AlbinAlbyl <33070061+AlbinAlbyl@users.noreply.github.com> Date: Wed, 17 Apr 2019 13:05:42 +0000 Subject: [PATCH] Fixed ifinstalled command after dunst update. --- .scripts/tools/ifinstalled | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.scripts/tools/ifinstalled b/.scripts/tools/ifinstalled index 0305f4f..b0d23e5 100755 --- a/.scripts/tools/ifinstalled +++ b/.scripts/tools/ifinstalled @@ -1,3 +1,3 @@ #!/bin/sh # If $1 command is not available, error code and notify. -command -v "$1" >/dev/null || { notify-send "📦 $1 must be installed for this function." && exit 1 ;} +command -v "$1" >/dev/null || { notify-send "📦 $1" "must be installed for this function." && exit 1 ;}