summaryrefslogtreecommitdiffstats
path: root/.scripts/tools
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2019-04-17 09:09:25 -0400
committerGitHub <noreply@github.com>2019-04-17 09:09:25 -0400
commit6880afae1493d6b5e3025a17ca3d1c28101f3515 (patch)
tree21487d3fe9d7cf0c115f6cfc4ab9c1f1ba30273c /.scripts/tools
parentb352bd061fc20e7b7c1a18450fb29f2208396a6b (diff)
parentca20964b10139ce35ef52674d97fb918ce2a2882 (diff)
downloadeibhear-6880afae1493d6b5e3025a17ca3d1c28101f3515.tar.gz
eibhear-6880afae1493d6b5e3025a17ca3d1c28101f3515.tar.zst
eibhear-6880afae1493d6b5e3025a17ca3d1c28101f3515.zip
Merge pull request #276 from AlbinAlbyl/master
Fixed ifinstalled command after dunst update.
Diffstat (limited to '.scripts/tools')
-rwxr-xr-x.scripts/tools/ifinstalled2
1 files changed, 1 insertions, 1 deletions
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 "📦 <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 ;}