1
0
Fork 0
jebbatime/scripts/jebbatime-dev-settime

36 lines
682 B
Plaintext
Raw Permalink Normal View History

2021-06-12 15:14:59 -06:00
#!/bin/bash
# Get config
. ~/.config/jebbatime.conf
cd $JEBBATIMEGITROOT
./tools/wasptool \
--battery \
--device $JEBBATIMEDEVMAC
echo "Connecting Bluetooth"
sudo bluetoothctl connect $JEBBATIMEDEVMAC
echo "Setting host `hostname` time via NTP"
sudo ntpdate $JEBBATIMENTPSERVER
echo "Checking time on watch"
./tools/wasptool \
--check-rtc \
--device $JEBBATIMEDEVMAC
echo "Setting time on watch"
./tools/wasptool \
--rtc \
--device $JEBBATIMEDEVMAC
echo "Checking time on watch"
./tools/wasptool \
--check-rtc \
--device $JEBBATIMEDEVMAC
echo "Disconnecting Bluetooth"
sudo bluetoothctl disconnect $JEBBATIMEDEVMAC