summaryrefslogtreecommitdiff
path: root/copy-all.sh
blob: 296bf3d1f978f0154ab6896c6504b0a5f19ff081 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 -rf ./config/* ~/.config/
cp -rf ./icons/* ~/.icons/
cp -rf ./themes/* ~/.themes/
cp ./vimrc ~/.vimrc
cp ./zshrc ~/.zshrc