60 lines
1.2 KiB
Bash
Executable file
60 lines
1.2 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
echo
|
|
echo "configuring settings common among OSes"
|
|
sudo true
|
|
#zsh
|
|
chsh -s `which zsh` $USER
|
|
|
|
#submodules
|
|
DIR=`realpath $DIR`
|
|
echo "using $DIR as the top level directory"
|
|
cd $DIR
|
|
git submodule init
|
|
git submodule update --recursive
|
|
|
|
#configs
|
|
ln -vfs "$DIR/.vim" ~/.
|
|
ln -vfs "$DIR/.vimrc" ~/.
|
|
ln -vfs "$DIR/.tmux.conf" ~/.
|
|
rm -f "~/.zshrc"
|
|
ln -vfs "$DIR/.zshrc" ~/.
|
|
ln -vfs "$DIR/.oh-my-zsh" ~/.
|
|
ln -vfs "$DIR/.Slic3r" ~/.
|
|
ln -vfs "$DIR/.ghci" ~/.
|
|
mkdir -p ~/.kde/share/config/
|
|
ln -vfs "$DIR/.kdiff3rc" ~/.kde/share/config/kdiff3rc
|
|
ln -vfs "$DIR/.conky" ~/.
|
|
ln -vfs "$DIR/.gitconfig.linux.private" ~/.gitconfig
|
|
mkdir -p ~/.config/autostart/
|
|
ln -vfs "$DIR/.config/autostart/conky.desktop" ~/.config/autostart/
|
|
|
|
# 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 ~/.fonts
|
|
cp -rv "$DIR/fonts" ~/.fonts
|
|
fc-cache
|
|
|
|
#rvm
|
|
gpg --recv-keys BF04FF17
|
|
curl -sSL https://get.rvm.io | bash -s stable
|
|
source $HOME/.rvm/scripts/rvm
|
|
rvm install ruby
|
|
|
|
# talks: reveal-md
|
|
sudo ln -s /usr/bin/nodejs /usr/bin/node
|
|
sudo npm install -g reveal-md
|
|
|
|
echo
|
|
echo "now go ahead and restart"
|
|
echo
|
|
|
|
|