beautifies the install script
[dotfiles.git] / install
1 #!/bin/bash
2
3 cp -if `pwd`/.vimrc ~/.vimrc || true
4 cp -if `pwd`/.bashrc ~/.bashrc || true
5 cp -if `pwd`/muttrc ~/.mutt/muttrc || true
6 cp -if `pwd`/msmtp ~/.mutt/msmtp || true
7 cp -if `pwd`/offlineimaprc ~/.mutt/offlineimaprc || true
8
9 if [ "$1" = "-x" ]
10 then
11 echo 'Also copying X files for non headless'
12 mkdir -p ~/.i3
13 cp -if `pwd`/i3/* ~/.i3/ || true
14 cp -if `pwd`/.xinitrc ~/.xinitrc || true
15 cp -if `pwd`/.Xresources ~/.Xresources || true
16 fi