15 lines
336 B
Bash
Executable file
15 lines
336 B
Bash
Executable file
#!/bin/sh
|
|
|
|
case "$1" in
|
|
--connect)
|
|
notify-send 'bluetooth' 'Connecting to Headphones'
|
|
bluetoothctl connect "88:C9:E8:D7:60:85"
|
|
;;
|
|
--disconnect)
|
|
notify-send 'bluetooth' 'Disconnecting Headphones'
|
|
bluetoothctl disconnect "88:C9:E8:D7:60:85"
|
|
;;
|
|
*)
|
|
exit 1
|
|
;;
|
|
esac
|