Advertisement
metalx1000

Linux Shell Connect Bluetooth Device

Jan 21st, 2022
1,924
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.34 KB | None | 0 0
  1. #!/bin/bash
  2. ######################################################################
  3. #Copyright (C) 2021  Kris Occhipinti
  4. #https://filmsbykris.com
  5.  
  6. #This program is free software: you can redistribute it and/or modify
  7. #it under the terms of the GNU General Public License as published by
  8. #the Free Software Foundation, either version 3 of the License, or
  9. #(at your option) any later version.
  10.  
  11. #This program is distributed in the hope that it will be useful,
  12. #but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. #GNU General Public License for more details.
  15.  
  16. #You should have received a copy of the GNU General Public License
  17. #along with this program.  If not, see <http://www.gnu.org/licenses/>.
  18. ######################################################################
  19.  
  20. type="$(echo -e "EXISITING\nNEW"|fzf)"
  21.  
  22. bluetoothctl power on
  23. if [[ "$type" == "NEW" ]]
  24. then
  25.   bluetoothctl scan on
  26.  
  27.   read -p "Enter Device ID: " device
  28.   bluetoothctl pair $device
  29.   bluetoothctl trust $device
  30.   bluetoothctl scan off
  31.   #bluetoothctl power off
  32.  
  33. else
  34.   device="$(bluetoothctl devices|fzf|awk '{print $2}')"
  35. fi
  36.  
  37. action="$(echo -e "CONNECT\nDISCONNECT"|fzf)"
  38.  
  39. if [[ "$action" == "CONNECT" ]]
  40. then
  41.   bluetoothctl connect $device
  42. else
  43.   bluetoothctl disconnect $device
  44. fi
  45.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement