13 lines
199 B
Bash
Executable File
13 lines
199 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
notify-send "Connecting to Lurar"
|
|
|
|
bluetoothctl power on
|
|
if bluetoothctl connect 94:DB:56:41:C0:38; then
|
|
notify-send "Connected"
|
|
else
|
|
notify-send "Failed to connect to Lurar"
|
|
fi
|