diff options
Diffstat (limited to 'copy-all.sh')
| -rw-r--r-- | copy-all.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/copy-all.sh b/copy-all.sh new file mode 100644 index 0000000..82199c3 --- /dev/null +++ b/copy-all.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +echo "WARNING: this will overwrite the config" +read -p "are you sure? (y/n): " answer +if [ "$answer" != "y" ]; then + echo "Aborting." + exit 1 +fi + +cp -r ./config/* ~/.config/ +cp -r ./icons/* ~/.icons/ +cp -r ./themes/* ~/.themes/ +cp ./vimrc ~/.vimrc +cp ./zshrc ~/.zshrc |
