boot: inital commit

This commit is contained in:
Beamer 2025-06-01 12:40:05 +02:00
parent aefb753433
commit 59c197b026

View file

@ -1,6 +1,24 @@
#!/bin/bash
cd /Users/beamer/Documents/ProPresenter-LIVE
/usr/bin/git add --all .
/usr/bin/git commit -m "boot: inital commit"
/usr/bin/git push origin
function shutdown()
{
cd /Users/beamer/Documents/ProPresenter-LIVE
/usr/bin/git add --all .
/usr/bin/git commit -m "boot: inital commit"
/usr/bin/git push origin
exit 0
}
function startup()
{
tail -f /dev/null &
wait $!
}
trap shutdown SIGTERM
trap shutdown SIGKILL
startup;