From fd7adc6956826ac2ee562c6631b42bc84872d7af Mon Sep 17 00:00:00 2001 From: Ulises Jeremias Cornejo Fandos Date: Fri, 4 Feb 2022 18:35:46 -0300 Subject: [PATCH] Update rofi-bluetooth --- common/bin/rofi-bluetooth | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/bin/rofi-bluetooth b/common/bin/rofi-bluetooth index bf1a6759..2993c187 100755 --- a/common/bin/rofi-bluetooth +++ b/common/bin/rofi-bluetooth @@ -16,11 +16,11 @@ # Depends on: # Arch repositories: rofi, bluez-utils (contains bluetoothctl) -if type -p rofi >/dev/null; then +if ! type -p rofi >/dev/null; then echo "Command not found: rofi. Please install it." fi -if type -p bluetoothctl >/dev/null; then +if ! type -p bluetoothctl >/dev/null; then echo "Command not found: bluetoothctl. Please install bluetoothctl or bluez-utils (contains bluetoothctl)" exit 1 fi