about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rwxr-xr-xbluetooth-devices.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bluetooth-devices.sh b/bluetooth-devices.sh
index c93bf84..25819b3 100755
--- a/bluetooth-devices.sh
+++ b/bluetooth-devices.sh
@@ -15,7 +15,7 @@ connect_bluetooth() {
 }
 
 
-disconnect_bluetooth(){
+disconnect_bluetooth() {
     local MAC=$1
     local DEVICE=$2
     if bluetoothctl disconnect $MAC | grep -q 'successful' 
@@ -26,7 +26,7 @@ disconnect_bluetooth(){
     fi
 }
 
-# Opens dmenu prompt, which lets you decide which device you want to connect to
+# Opens dmenu prompt, which lets you decide which device you want to connect to / disconnect from
 DEVICE=$(bluetoothctl devices | sed 's/[^ ]* //' | sed 's/[^ ]* //' | dmenu -i)
 
 # If dmenu was cancelled, exit program