mirror of
https://github.com/ShaYmez/hblink3.git
synced 2026-01-09 14:59:45 -05:00
11 lines
269 B
Bash
Executable File
11 lines
269 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$PARROT_ENABLE" = 1 ]; then
|
|
echo 'Starting HBlink with Parrot.....'
|
|
python bridge.py -c hblink.cfg -r rules.py &
|
|
python playback.py -c playback.cfg
|
|
else
|
|
echo 'Starting HBlink.....'
|
|
exec python bridge.py -c hblink.cfg -r rules.py
|
|
fi
|