114 lines
2.2 KiB
Bash
Executable file
114 lines
2.2 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
function deploy_for_desktop()
|
|
{ # {{{
|
|
cd ~
|
|
ln -s $WAI/xinitrc ./.xinitrc
|
|
ln -s $WAI/Xmodmap ./.Xmodmap
|
|
ln -s $WAI/octaverc ./.octaverc
|
|
ln -s $WAI/gitconfig ./.gitconfig
|
|
|
|
cd ~
|
|
if [ ! -d "~/.my_utils" ]; then mkdir ~/.my_utils; fi;
|
|
cd ~/.my_utils
|
|
ln -s $WAI/Utils/monitor.sh ./monitor.sh
|
|
ln -s $WAI/Utils/monitorOff.sh ./monitorOff.sh
|
|
ln -s $WAI/Utils/track.sh ./track.sh
|
|
ln -s $WAI/Utils/blink.sh ./blink.sh
|
|
ln -s $WAI/Utils/octopus.sh ./octopus.sh
|
|
|
|
|
|
ln -s $WAI/chooseWP.sh ~/Pictures/wallpapers/chooseWP.sh
|
|
} # }}}
|
|
|
|
function deploy_vim()
|
|
{ # {{{
|
|
|
|
cd ~
|
|
ln -s $WAI/vim/vimrc ./.vimrc
|
|
|
|
if [ ! -d "~/.vim" ]; then mkdir ~/.vim/; fi;
|
|
cd ~/.vim
|
|
|
|
if [ ! -d "./colors" ]; then mkdir colors; fi;
|
|
cd colors
|
|
ln -s $WAI/vim/colors/wombat256modv1.vim ./wombat256modv1.vim
|
|
|
|
cd ..
|
|
if [ ! -d "./skeletons" ]; then mkdir skeletons; fi;
|
|
cd skeletons
|
|
for i in `ls $WAI/vim/skeletons`; do ln -s $WAI/vim/skeletons/$i ./$i; done
|
|
|
|
cd ..
|
|
if [ ! -d "./spell" ]; then mkdir spell; fi;
|
|
cd spell
|
|
for i in `ls $WAI/vim/spell`; do ln -s $WAI/vim/spell/$i ./$i; done
|
|
|
|
cd ..
|
|
if [ ! -d "./plugin" ]; then mkdir plugin; fi;
|
|
cd plugin
|
|
for i in `ls $WAI/vim/plugin`; do ln -s $WAI/vim/plugin/$i ./$i; done
|
|
|
|
cd ..
|
|
if [ ! -d "./scripts" ]; then mkdir scripts; fi;
|
|
cd scripts
|
|
for i in `ls $WAI/vim/scripts`; do ln -s $WAI/vim/scripts/$i ./$i; done
|
|
} # }}}
|
|
|
|
function deploy_ssh()
|
|
{ # {{{
|
|
if [ ! -d "~/.ssh" ]; then mkdir .ssh/; fi;
|
|
cd ~/.ssh
|
|
ln -s $WAI/ssh/config ./
|
|
} # }}}
|
|
|
|
function deploy_mutt()
|
|
{ # {{{
|
|
cd ~
|
|
ln -s $WAI/mailcap ./.mailcap
|
|
|
|
if [ ! -d "~/.mutt" ]; then mkdir ~/.mutt/; fi;
|
|
cd ~/.mutt
|
|
ln -s $WAI/mutt/muttrc ./
|
|
ln -s $WAI/mutt/killsig ./
|
|
ln -s $WAI/mutt/passwords.gpg ./
|
|
ln -s $WAI/mutt/crypto ./
|
|
ln -s $WAI/mutt/colors.test1 ./
|
|
ln -s $WAI/mutt/colors.test2 ./
|
|
ln -s $WAI/mutt/unlock-pass.sh ./
|
|
} # }}}
|
|
|
|
|
|
WAI=`pwd`
|
|
|
|
#simple files
|
|
cd ~
|
|
ln -s $WAI/bashrc ./.bashrc
|
|
|
|
deploy_for_desktop
|
|
deploy_vim
|
|
deploy_ssh
|
|
deploy_mutt
|
|
|
|
|
|
|
|
|
|
|
|
cd ~
|
|
if [ -d "Programmation" ]; then mkdir Programmation; fi;
|
|
cd ~/Programmation
|
|
ln -s $WAI/git_auto_pull.sh ./git_auto_pull.sh
|
|
|
|
|
|
|
|
function deploy_directory()
|
|
{ # {{{
|
|
# @arg1: dst directory
|
|
# @arg2: src directory
|
|
|
|
if [ ! -d $1 ]; then mkdir $1; fi;
|
|
cd $1;
|
|
|
|
for i in `ls $2`; do ln -s $2/$i ./$i; done
|
|
cd ..
|
|
} # }}}
|