# update and upgrade installed packages apt update && apt upgrade # install cronie and termux-services pkg install cronie termux-services # enable the crond service sv-enable crond # install and enable vim pkg install vim export EDITOR=vim # install git and openssh apt install git openssh # set git username and email git config --global user.name "" git config --global user.email "" # create your ssh keys ssh-keygen -t rsa -C "" # create symlinks to access your device storage via termux termux-setup-storage # move your public ssh key to somewhere more easily accessible mv ~/.ssh/id_rsa.pub ~/storage/shared/documents/id_rsa.pub # clone your vault git clone git@github.com:/ ~/storage/shared/documents/my-vault # install wget and download zk_sync.sh pkg install wget cd ~/storage/shared/documents wget https://gist.github.com/green-leader/862d0ccfc5cf82fc650da54fe14d5ff5/raw/e4136f26393f7352354da9d6ffec3751a5aefe97/sync.sh # -e: edit your crontab file i.e. your list of cronjobs crontab -e # My Cron Job: # */30 * * * * bash ~/storage/shared/documents/zk_sync.sh