diff options
Diffstat (limited to '.dotfilesrc')
-rwxr-xr-x | .dotfilesrc | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/.dotfilesrc b/.dotfilesrc deleted file mode 100755 index da53b77..0000000 --- a/.dotfilesrc +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash - -dir=~/dotfiles -olddir=~/dotfiles_old - -# Files: bash, vim, zsh, mutt, vim, xmodmap, notes, fetchmail, maildrop, installation file. -files="bashrc vimrc zshrc muttrc colormutt vim xmodmap mynotes mailfilter krystle tmux.conf zathurarc dotfilesrc mailcap" - -rm -rf $olddir -mkdir -p $olddir - -cd $dir -for file in $files; do - echo $file - mv ~/.$file $olddir - ln -s $dir/.$file ~ -done - -# Fetchmailrc (protect sensitive information) -mv ~/.fetchmailrc $olddir -cp $dir/.fetchmailrc ~ -vim ~/.fetchmailrc -# read password -# sed -i 's/xx_change_me_xx/'$password'/g' ~/.fetchmailrc - -# SSMTP config -echo ssmtp.conf -sudo mv /etc/ssmtp/ssmtp.conf $olddir -sudo ln -s $dir/ssmtp.conf /etc/ssmtp/ - -# Permissions -sudo chmod 600 ~/.fetchmailrc -sudo chmod 600 $dir/.mailfilter - -sudo rm -rf .vim/bundle -mkdir .vim/bundle -git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle -vim +PluginInstall +qall |