From b1f25105d325dc2dd33586a1023e3b33a51c9b90 Mon Sep 17 00:00:00 2001 From: Patrick Simianer
Date: Sat, 13 Feb 2016 23:23:19 +0100 Subject: improved setup.sh --- setup.sh | 62 ++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 34 insertions(+), 28 deletions(-) diff --git a/setup.sh b/setup.sh index e04de2d..d28801f 100755 --- a/setup.sh +++ b/setup.sh @@ -1,33 +1,39 @@ #!/bin/zsh -x -stow -t $HOME clamz -stow -t $HOME feh -stow -t $HOME git -stow -t $HOME gtk -stow -t $HOME htop -stow -t $HOME imwheel -stow -t $HOME input -stow -t $HOME khal -stow -t $HOME moc -stow -t $HOME mozilla -stow -t $HOME mpv -stow -t $HOME multitail -stow -t $HOME mutt -stow -t $HOME ncftp -stow -t $HOME newsbeuter -stow -t $HOME npm -stow -t $HOME ratpoison -stow -t $HOME rtorrent -stow -t $HOME subversion -stow -t $HOME tex -stow -t $HOME theano -stow -t $HOME tmux -stow -t $HOME vim -stow -t $HOME X -stow -t $HOME zsh -git submodule foreach git pull origin master -cd $HOME/.vim/autoload; ln -s ../bundle/pathogen/autoload/pathogen.vim . -cd $HOME/.urxvt; ln -s urxvt-perls/clipboard .; ln -s urxvt-perls/keyboard-select .; ln -s urxvt-tabbedex/tabbedex .; ln -s urxvt-perls/url-select . +PKG=(\ + clamz \ + feh \ + git \ + gtk \ + htop \ + imwheel \ + input \ + khal \ + moc \ + mozilla \ + mpv \ + multitail \ + mutt \ + ncftp \ + newsbeuter \ + npm \ + ratpoison \ + rtorrent \ + subversion \ + tex \ + theano \ + tmux \ + urxvt \ + vim \ + X \ + xdg \ + zsh \ +) +for i in $PKG; do + stow -t $HOME $i +done +cd $HOME/.vim/autoload; ln -s ../bundle/pathogen/autoload/pathogen.vim . +cd $HOME/.urxvt; ln -s urxvt-perls/clipboard .; ln -s urxvt-perls/keyboard-select .; ln -s urxvt-tabbedex/tabbedex .; ln -s urxvt-perls/url-select . -- cgit v1.2.3