add batman beyond config

This commit is contained in:
2026-05-16 13:01:39 -04:00
parent 2bd06da3ed
commit 1b3849ccd3
38 changed files with 3077 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#!/bin/fish
function m50x
set -l mac "00:0A:45:44:82:12"
set -l conn $( bluetoothctl devices Connected )
if test -z $conn
if bluetoothctl connect $mac > /dev/null
echo "Connection successful"
end
else
if bluetoothctl disconnect > /dev/null
echo "Disconnection successful"
end
end
end