Update Configs

This commit is contained in:
2024-07-20 11:47:52 -05:00
parent da6a88e63a
commit 060d736b24
10 changed files with 69 additions and 31 deletions

View File

@ -3,7 +3,7 @@
source $SUNHAT_PATH/bin/ascii.sh
if [ $# -eq 0 ]; then
SUB=$(gum choose "theme" "font" "install" "update" --height 8 --header "" | tr '[:upper:]' '[:lower:]')
SUB=$(gum choose "theme" "font" "install" "update" "push" --height 8 --header "" | tr '[:upper:]' '[:lower:]')
else
SUB=$1
fi

7
bin/sunhat-push Normal file
View File

@ -0,0 +1,7 @@
cd $SUNHAT_PATH
git pull
cp -r ~/Documents/Configs/. $SUNHAT_PATH/configs/dotfiles/
git add -A
git commit -m "Update Configs"
git push
cd -