moving all dots

This commit is contained in:
Barak Michener 2024-05-18 19:08:15 -07:00
parent 6fcf9ba919
commit d9b6fdfc1b
349 changed files with 34598 additions and 34727 deletions

13
dot_setup_new_env.sh Executable file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env bash
function main {
mv -f .* $HOME
mv -f bin $HOME
cd $HOME
git submodule update --init --recursive
}
read -p "This will overwrite files in $HOME. Type 'yes' to confirm: " confirm
if [ "$confirm" == "yes" ]; then
main;
fi