commit 6880afae1493d6b5e3025a17ca3d1c28101f3515 parent b352bd061fc20e7b7c1a18450fb29f2208396a6b Author: Luke Smith <luke@lukesmith.xyz> Date: Wed, 17 Apr 2019 09:09:25 -0400 Merge pull request #276 from AlbinAlbyl/master Fixed ifinstalled command after dunst update. Diffstat:
M | .scripts/tools/ifinstalled | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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 "📦 <b>$1</b> must be installed for this function." && exit 1 ;} +command -v "$1" >/dev/null || { notify-send "📦 $1" "must be installed for this function." && exit 1 ;}