2014-07-07 15:43:52 -04:00
|
|
|
while getopts ":hbsdtclw" VALUE "$@"; do
|
2014-06-22 23:14:05 -04:00
|
|
|
if [ "$VALUE" = "h" ] ; then
|
|
|
|
echo "sync.sh syncs configuration files, applications, and Vim bundles between computers"
|
|
|
|
echo " -h Shows this help"
|
|
|
|
echo " -b Syncs Vim bundles"
|
|
|
|
echo " -s Syncs computer with server applications in server.txt"
|
|
|
|
echo " -d Syncs computer with desktop applications in desktop.txt"
|
|
|
|
echo " -t Syncs tmux configuration file"
|
|
|
|
echo " -c Syncs other configuration files"
|
|
|
|
fi
|
2014-06-16 23:13:57 -04:00
|
|
|
if [ "$VALUE" = "b" ] ; then
|
|
|
|
mkdir -p ~/.vim/plugin/
|
|
|
|
mkdir -p ~/.vim/backup/
|
|
|
|
mkdir -p ~/.vim/undo/
|
|
|
|
mkdir -p ~/.vim/tmp/
|
|
|
|
mkdir -p ~/.vim/bundle/
|
|
|
|
mkdir -p ~/.vim/bundle/
|
|
|
|
echo "Installing vim bundles"
|
|
|
|
if [ ! -f ~/.vim/plugin/sessionman.vim ]
|
|
|
|
then
|
|
|
|
echo "Installing sessionman in ~/.vim/plugin/"
|
|
|
|
wget -O ~/.vim/plugin/sessionman.vim http://www.vim.org/scripts/download_script.php?src_id=15599
|
|
|
|
fi
|
|
|
|
if [ ! -d ~/.vim/bundle/vundle/ ]
|
|
|
|
then
|
|
|
|
echo "Installing vundle"
|
|
|
|
git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
|
|
|
|
fi
|
|
|
|
vim +BundleInstall +qa
|
|
|
|
fi
|
|
|
|
if [ "$VALUE" = "s" ] ; then
|
2014-07-07 04:36:19 -04:00
|
|
|
if [ "$(uname)" != "Darwin" ]; then
|
|
|
|
echo "Installing server applications:"
|
|
|
|
echo $(grep -vE "^\s*#" server.txt | tr "\n" " ")
|
|
|
|
sudo apt-get install $(grep -vE "^\s*#" server.txt | tr "\n" " ")
|
|
|
|
else
|
|
|
|
if [ -d "/usr/local/Library/Taps/phinze/homebrew-cask" ] ; then
|
|
|
|
brew tap phinze/cask
|
|
|
|
brew cask
|
|
|
|
fi
|
|
|
|
brew cask install textexpander controlplane gimp inkscape adium vlc iterm2 steam
|
|
|
|
fi
|
2014-06-16 23:13:57 -04:00
|
|
|
fi
|
|
|
|
if [ "$VALUE" = "d" ] ; then
|
|
|
|
echo "Installing desktop applications"
|
2014-07-07 03:20:57 -04:00
|
|
|
if [ "$(uname)" != "Darwin" ]; then
|
|
|
|
echo $(grep -vE "^\s*#" desktop.txt | tr "\n" " ")
|
|
|
|
sudo apt-get install $(grep -vE "^\s*#" desktop.txt | tr "\n" " ")
|
|
|
|
else
|
2014-07-07 04:36:19 -04:00
|
|
|
brew install autojump ncdu htop vim youtube-dl tree sshfs ircii brew-cask imagemagick node ffmpeg wget
|
2014-07-07 03:20:57 -04:00
|
|
|
fi
|
2014-06-16 23:13:57 -04:00
|
|
|
fi
|
|
|
|
if [ "$VALUE" = "t" ] ; then
|
|
|
|
echo "Syncing tmux"
|
2014-06-16 23:33:58 -04:00
|
|
|
rm ~/.tmux.conf
|
2014-06-16 23:13:57 -04:00
|
|
|
ln -s ${PWD}/tmux.conf ~/.tmux.conf
|
|
|
|
fi
|
2014-06-16 23:33:58 -04:00
|
|
|
if [ "$VALUE" = "c" ] ; then
|
|
|
|
echo "Syncing config files"
|
|
|
|
rm ~/.gitconfig ~/.vimrc ~/.vimperatorrc ~/.gitignore_global ~/.bashrc
|
|
|
|
ln -s ${PWD}/gitignore_global ~/.gitignore_global
|
|
|
|
ln -s ${PWD}/vimrc ~/.vimrc
|
|
|
|
ln -s ${PWD}/vimperatorrc ~/.vimperatorrc
|
|
|
|
ln -s ${PWD}/gitconfig ~/.gitconfig
|
|
|
|
ln -s ${PWD}/bashrc ~/.bashrc
|
2014-06-16 23:13:57 -04:00
|
|
|
fi
|
2014-07-06 23:09:58 -04:00
|
|
|
if [ "$VALUE" = "l" ] ; then
|
|
|
|
echo "Linking standard directories..."
|
|
|
|
mkdir -p ~/Applications
|
|
|
|
ln -s ~/Applications ~/applications
|
|
|
|
ln -s ~/Desktop ~/desktop
|
|
|
|
ln -s ~/Documents ~/documents
|
|
|
|
ln -s ~/Downloads ~/downloads
|
|
|
|
ln -s ~/Music ~/music
|
|
|
|
ln -s ~/Pictures ~/pictures
|
|
|
|
ln -s ~/Videos ~/videos
|
|
|
|
echo "Done"
|
|
|
|
fi
|
2014-07-07 15:43:52 -04:00
|
|
|
if [ "$VALUE" = "w" ] ; then
|
|
|
|
sudo git clone git://github.com/zolrath/wemux.git /usr/local/share/wemux
|
|
|
|
sudo ln -s /usr/local/share/wemux/wemux /usr/local/bin/wemux
|
|
|
|
sudo cp /usr/local/share/wemux/wemux.conf.example /usr/local/etc/wemux.conf
|
|
|
|
sudo vi `which wemux` +"execute \"normal gg/tmux\<CR>nnnea -2\<Esc>nea -2\<Esc>ggZZ\""
|
|
|
|
sudo vi /usr/local/etc/wemux.conf +":execute \"normal gg/host_list\<CR>nnww\""
|
|
|
|
fi
|
2014-06-13 14:27:12 -04:00
|
|
|
done
|
|
|
|
echo "Done syncing"
|