diff options
author | Karel Kočí <cynerd@email.cz> | 2016-06-30 16:03:25 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2016-06-30 16:03:25 +0200 |
commit | e573b3020c032400eed60b649a2cbf55266e6bb0 (patch) | |
tree | 8f572394ac8433529c7a8e70d160a2fbe8268b4e /install | |
parent | b8c667bd64b3edd38d56c63c5bd1db53a23b4499 (diff) | |
download | myconfigs-e573b3020c032400eed60b649a2cbf55266e6bb0.tar.gz myconfigs-e573b3020c032400eed60b649a2cbf55266e6bb0.tar.bz2 myconfigs-e573b3020c032400eed60b649a2cbf55266e6bb0.zip |
Add current configurations from old repository
Diffstat (limited to 'install')
-rwxr-xr-x | install | 61 |
1 files changed, 61 insertions, 0 deletions
@@ -0,0 +1,61 @@ +#!/bin/bash + +WDIR=`pwd` +cd `dirname $0` + +IUSER=`whoami` +WHOME=`cd ~ && pwd` + +function inst { + SOURCE=$1 + OUTPUT=$2 + echo rsync -rlpt $SOURCE $OUTPUT + rsync -rlpt $SOURCE $OUTPUT +} + +read -p "Install Bashrc? (Y/n) " +if [[ $REPLY =~ ^[Yy]?$ ]]; then + inst bashrc $WHOME/.bashrc +fi + +read -p "Install Bashrc to root? (Y/n) " +if [[ $REPLY =~ ^[Yy]?$ ]]; then + sudo inst bashrc /root/.bashrc +fi + +read -p "Install GIT configuration? (Y/n) " +if [[ $REPLY =~ ^[Yy]?$ ]]; then + sudo inst gitconfig $WHOME/.gitconfig +fi + +read -p "Install VIM scripts? (Y/n) " +if [[ $REPLY =~ ^[Yy]?$ ]]; then + inst vimrc $WHOME/.vimrc + inst vim $WHOME/.vim + echo "Please don't forget to setup YouCompleteMe" +fi + +read -p "Install i3 configuration? (Y/n) " +if [[ $REPLY =~ ^[Yy]?$ ]]; then + inst xinitrc $WHOME/.xinitrc + inst Xresources $WHOME/.Xresources + inst config/i3 $WHOME/.config/i3 + inst config/i3blocks $WHOME/.config/i3blocks + inst config/i3status $WHOME/.config/i3status + inst local/bin/mxrandr $WHOME/.local/bin/mxrandr +fi + +read -p "Install MPD configuration? (Y/n) " +if [[ $REPLY =~ ^[Yy]?$ ]]; then + inst config/mpd $WHOME/.config/mpd +fi + +read -p "Install backup script? (Y/n) " +if [[ $REPLY =~ ^[Yy]?$ ]]; then + inst local/bin/system-backup $WHOME/.local/bin/system-backup +fi + +read -p "Install Eagle CAD configuration? (Y/n) " +if [[ $REPLY =~ ^[Yy]?$ ]]; then + inst eaglerc $WHOME/.eaglerc +fi |