dotfiles/common/configure_fresh_system.sh

210 lines
4.8 KiB
Bash
Raw Normal View History

#!/bin/bash
2016-07-30 20:39:07 +01:00
SUDO=""
if [[ -z $NOSUDO ]]; then
2016-07-30 20:42:34 +01:00
SUDO="sudo"
2016-07-30 20:39:07 +01:00
fi
2016-07-30 20:42:34 +01:00
echo "using '$SUDO' as sudo"
set -e
echo
echo "configuring settings common among OSes"
2016-07-30 20:39:07 +01:00
$SUDO true
2015-07-19 10:23:35 +01:00
#zsh
2015-07-19 10:23:35 +01:00
if [[ -z $DONT_CHANGE_SHELL ]]; then
echo "changing shell to zsh"
chsh -s `which zsh` $USER
fi
CURL="curl -sSfL"
jobs_count=`nproc`
2016-06-04 07:59:40 +01:00
if [[ -z $DIR ]]; then
echo "please set DIR"
exit 1
fi
DIR=`realpath $DIR`
echo "using $DIR as the top level directory"
cd $DIR
git submodule update --init --recursive
#configs
ln -vfs "$DIR/.vim" ~/.
ln -vfs "$DIR/.vimrc.linux" ~/.vimrc
ln -vfs "$DIR/.tmux.conf" ~/.
rm -f "~/.zshrc"
2016-11-13 16:09:48 +00:00
ln -vfs "$DIR/.zprezto" ~/.
ln -vfs "$DIR/.zpreztorc" ~/.zpreztorc
2016-11-13 16:16:45 +00:00
ln -vfs "$DIR/.zprofile" ~/.zprofile
2016-11-13 16:09:48 +00:00
ln -vfs "$DIR/.zprezto/runcoms/zshenv" ~/.zshenv
ln -vfs "$DIR/.zshrc" ~/.zshrc
2016-11-13 16:09:48 +00:00
2017-01-19 10:03:34 +00:00
ln -vfs "$DIR/.setenv.sh" ~/.setenv
ln -vfs "$DIR/.Slic3r" ~/.
2015-02-28 21:39:29 +00:00
ln -vfs "$DIR/.ghci" ~/.
2016-05-03 19:20:46 +01:00
ln -vfs "$DIR/.conkyrc" ~/.
mkdir -p ~/.kde/share/config/
ln -vfs "$DIR/.kdiff3rc" ~/.kde/share/config/kdiff3rc
ln -vfs "$DIR/.gitconfig.linux.private" ~/.gitconfig
2015-04-12 18:07:50 +01:00
mkdir -p ~/.config/autostart/
2015-10-17 20:05:23 +01:00
# autostart apps
ln -vfs "$DIR/.config/autostart/redshift-gtk.desktop" ~/.config/autostart/
2015-07-04 11:12:53 +01:00
mkdir -p ~/.config/vdirsyncer/
ln -vfs "$DIR/.config/vdirsyncer/config" ~/.config/vdirsyncer/
2015-09-28 19:59:10 +01:00
ln -vfs "$DIR/.config/redshift.conf" ~/.config/redshift.conf
mkdir -p ~/.config/Code/User
2016-11-25 19:05:15 +00:00
ln -vfs "$DIR/.config/Code/User/settings.json" ~/.config/Code/User/settings.json
source ~/.setenv
# symlink 'nodejs' as node on some systems
# will replace symlink if it exists, but won't replace regular file
if [[ ! -f /usr/bin/node ]]; then
2016-07-30 20:39:07 +01:00
$SUDO ln -vfs /usr/bin/nodejs /usr/bin/node
fi
# tools
ln -vfs "$DIR/tools" ~/
# stuff that does not like symbolic links
mkdir -vp ~/.config/terminator
rm -f ~/.config/terminator/config
ln "$DIR/.config/terminator/config" ~/.config/terminator/config
#install fonts
mkdir -p ~/.fonts
cp -rv "$DIR/fonts" ~/.fonts
set +e
fc-cache -rv
2016-07-30 20:39:07 +01:00
$SUDO fc-cache -rv
set -e
2016-07-31 08:43:37 +01:00
if [[ -z $NORUST ]]; then
#rust
echo "installing rust"
RUSTUP_TEMP="/tmp/blastoff.sh"
$CURL https://sh.rustup.rs > "$RUSTUP_TEMP"
chmod a+x "$RUSTUP_TEMP"
"$RUSTUP_TEMP" -y
rm -f "$RUSTUP_TEMP"
rustup update
rustup default stable
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
cd "$DIR/../"
echo "getting rust sources..."
if [[ ! -d rust ]]; then
git clone https://github.com/rust-lang/rust.git --recursive
else
cd rust
git pull
git submodule update --init --recursive
fi
2016-10-07 09:01:17 +01:00
set +e
cargo install rustfmt
cargo install racer
cargo install rustsym
cargo install ripgrep
set -e
fi
2015-07-19 08:56:32 +01:00
2016-11-01 13:35:53 +00:00
set +e
echo "Querying for gpg2 path"
gpg2_path=`which gpg2`
echo "Got $gpg2_path for gpg2 path"
2016-11-01 13:38:20 +00:00
set -e
2016-11-03 20:38:04 +00:00
if [[ -x "$gpg2_path" ]]; then
2016-11-01 13:35:53 +00:00
echo "Using gpg2"
GPG=gpg2
else
echo "WARNING using gpg instead of gpg2"
GPG=gpg
fi
2016-08-11 13:37:03 +01:00
if [[ -z $NORUBY ]]; then
set +e
$GPG --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
set -e
2016-11-01 13:35:53 +00:00
$GPG --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
2016-11-03 20:12:59 +00:00
echo "Downloading RVM..."
$CURL https://get.rvm.io | bash
set +e
2016-11-03 20:12:59 +00:00
echo "Sourcing RVM..."
source /usr/local/rvm/scripts/rvm
source ~/.rvm/scripts/rvm
set -e
2016-11-03 20:12:59 +00:00
echo "Installing Ruby..."
rvm install ruby --disable-binary
2016-08-11 13:37:03 +01:00
fi
2016-08-05 08:56:31 +01:00
if [[ -z $NOVIM ]]; then
if [[ ! -d ~/.fzf ]]; then
git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
else
cd ~/.fzf
git pull
git submodule update --init --recursive
fi
echo "Installing fzf"
~/.fzf/install --64 --all
echo "Installing Vim plugins"
2016-08-05 08:56:31 +01:00
echo "\n" | vim +PluginInstall +qa
if [[ -z $NOYCM ]]; then
2016-11-01 17:38:14 +00:00
echo "configuring YouCompleteMe"
cd ~/.vim/bundle/YouCompleteMe
if [[ -z $NOPYTHON3 ]]; then
python3 ./install.py --clang-completer --racer-completer --tern-completer
else
python ./install.py --clang-completer --racer-completer --tern-completer
fi
fi
2016-07-31 08:43:37 +01:00
fi
2016-08-04 16:59:32 +01:00
if [[ -z $NO_GO ]]; then
export GOPATH="$HOME/go"
mkdir -p "$GOPATH"
2016-04-10 18:38:38 +01:00
2016-08-04 16:59:32 +01:00
# excercism
go get -u github.com/exercism/cli/exercism
fi
2016-04-10 18:38:38 +01:00
echo "Installing Reveal-md"
# talks: reveal-md
2016-07-30 20:39:07 +01:00
$SUDO npm install -g reveal-md
echo "Installing fancy differ"
2016-07-30 20:39:07 +01:00
$SUDO npm install -g diff-so-fancy
2016-11-03 19:55:20 +00:00
if [[ -z $NOPYTHON3 ]]; then
2016-11-03 20:58:39 +00:00
set +e
2016-11-03 19:55:20 +00:00
pip3_path=`which pip3`
2016-11-03 20:58:39 +00:00
set -e
2016-11-03 19:55:20 +00:00
echo "pip3 path is $pip3_path"
2016-11-03 20:38:04 +00:00
if [[ -x "$pip3_path" ]]; then
2016-11-03 19:55:20 +00:00
echo "Choosing pip3 for pip"
PIP=pip3
else
echo "Choosing pip"
PIP=pip
fi
echo "Installing Nikola"
$SUDO $PIP install pygments-style-solarized ws4py watchdog webassets Nikola
2016-10-16 16:35:28 +01:00
fi
2015-07-04 10:45:07 +01:00
if [[ -z $USER ]]; then
USER=`whoami`
fi
2015-07-04 10:45:07 +01:00
2015-08-18 17:47:25 +01:00
# normalize npm permissions
mkdir -p $HOME/.npm
2016-07-30 20:39:07 +01:00
$SUDO chown $USER $HOME/.npm -R
2015-08-18 17:47:25 +01:00
echo
echo "now go ahead and restart"
echo