mirror of
https://github.com/cimryan/teslausb.git
synced 2026-02-28 20:20:32 +00:00
10 lines
237 B
Bash
10 lines
237 B
Bash
#!/bin/bash -eu
|
|
|
|
source /root/.teslaCamPushoverCredentials
|
|
|
|
curl -F "token=$pushover_app_key" \
|
|
-F "user=$pushover_user_key" \
|
|
-F "title=Dashcam Copy Complete" \
|
|
-F "message=$1 file(s) were copied." \
|
|
https://api.pushover.net/1/messages
|