16 lines
336 B
Bash
16 lines
336 B
Bash
|
|
#!/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
|