This commit is contained in:
Matthew Grove
2019-04-03 20:16:05 +01:00
parent eb31e63d4d
commit 78f83902fa
4 changed files with 317 additions and 0 deletions

11
config Normal file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
mkdir ~/.bluetooth-proximity-locking > /dev/null
chmod +x btpl.sh
mkdir bin
mv btpl.sh bin/btpl
if ! grep -Fq 'export PATH=$PATH":$HOME/.bluetooth-proximity-locking/bin"' ~/.profile
then
echo 'export PATH=$PATH":$HOME/.bluetooth-proximity-locking/bin"' >> ~/.profile
fi
mv * ~/.bluetooth-proximity-locking/ > /dev/null
source ~/.profile