nvim ~/.mackup.cfg
mackup backup
python ~/gitpush.py
gitpush.py
from git import Repo
import os
# code path
dirfile = os.path.abspath('/mnt/c/Users/Daniel/Google Drive/dotfiles')
repo = Repo(dirfile)
g = repo.git
g.add("--all")
g.commit("-m auto update")
g.push()
print("Successful push!")
python ~/gitpush.py