summaryrefslogtreecommitdiff
path: root/copy-all.sh
blob: 82199c3e85690e3f15daccb1dc604e0437c564f6 (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 -r ./config/* ~/.config/
cp -r ./icons/* ~/.icons/
cp -r ./themes/* ~/.themes/
cp ./vimrc ~/.vimrc
cp ./zshrc ~/.zshrc