dotfiles: leviathan: arch-openbox-20231010

This commit is contained in:
2023-10-10 20:44:53 -05:00
commit 0792b14382
390 changed files with 48601 additions and 0 deletions

24
.local/bin/gap Executable file
View File

@ -0,0 +1,24 @@
#!/bin/bash
# Below command will backup everything inside the project folder
git add .
# Give a comment to the commit if you want
echo "####################################"
echo "Write your commit comment! $(date +%Y.%m.%d) Update:"
echo "####################################"
read input
# Committing to the local repository with a message containing the time details and commit text
git commit -a -m "$(date +%Y.%m.%d) Update $input"
# Push the local files to github
git push
echo "################################################################"
echo "################### Git Push Done ######################"
echo "################################################################"