From cca701c551eff38df9bc7044936acf5953c34ccd Mon Sep 17 00:00:00 2001 From: speedie Date: Sun, 23 Jul 2023 20:43:04 +0200 Subject: [PATCH] Fix an issue --- bluetooth-spmenu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bluetooth-spmenu b/bluetooth-spmenu index c69119c..4c3597d 100755 --- a/bluetooth-spmenu +++ b/bluetooth-spmenu @@ -25,7 +25,7 @@ list_dev() { # Enable bluetooth and scan for devices enable_bt() { bluetoothctl power on > /dev/null && printf "Power: On\n" - bluetoothctl scan on & # Start scanning for devices + bluetoothctl scan on # Start scanning for devices bluetoothctl devices | grep -q "No default controller" && printf "No Bluetooth controller was found.\n" && exit 1 list_dev &