12 lines
356 B
Bash
12 lines
356 B
Bash
#/bin/sh
|
|
if [ $# \< 2 ]
|
|
then
|
|
python3 ~/.bluetooth-proximity-locking/btpl.py [bluetooth address] > /dev/null &
|
|
elif [ [ "$1" = "-r" ] || [ "$1" = "--run" ] ]
|
|
then
|
|
python3 ~/.bluetooth-proximity-locking/btpl.py [bluetooth address] > /dev/null &
|
|
elif [ [ "$1" = "-s" ] || [ "$1" = "--stop" ] ]
|
|
then
|
|
pkill ~/.bluetooth-proximity-locking/btpl.py
|
|
fi
|