Skip to content

Commit

Permalink
Update rofi-bluetooth
Browse files Browse the repository at this point in the history
  • Loading branch information
ulises-jeremias authored Feb 4, 2022
1 parent 82a4e22 commit fd7adc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/bin/rofi-bluetooth
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fd7adc6

Please sign in to comment.