blob: 94a4b3ff29fb834d4adeb1fc95c2b020e2cfffa2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#!/bin/bash
# create the symbolic links to the files in this repository
cd `dirname $0`
git submodule init
git submodule update
CURRENT_PATH=`pwd`
ln -s $CURRENT_PATH/bash/bashrc ~/.bashrc
ln -s $CURRENT_PATH/bash/bash_aliases ~/.bash_aliases
ln -s $CURRENT_PATH/vim/vimrc ~/.vimrc
ln -s $CURRENT_PATH/vim/vim ~/.vim
touch ~/.vimrc.local
ln -s $CURRENT_PATH/profile ~/.profile
ln -s $CURRENT_PATH/Xdefaults ~/.Xdefaults
ln -s $CURRENT_PATH/screenrc ~/.screenrc
ln -s $CURRENT_PATH/fonts ~/.fonts
fc-cache -vf ~/.fonts
mkdir -p ~/.config
ln -s $CURRENT_PATH/firejail ~/.config/firejail
ln -s $CURRENT_PATH/bin ~/bin
cp $CURRENT_PATH/applis/powerline-shell-config.py.dist $CURRENT_PATH/applis/powerline-shell/config.py
cd $CURRENT_PATH/applis/powerline-shell && ./install.py && cd -
ln -s $CURRENT_PATH/applis/powerline-shell/powerline-shell.py $CURRENT_PATH/bin
# GPG keystore is located in .gnupg directory so only link conf
mkdir -p ~/.gnupg
ln -s $CURRENT_PATH/gpg/gpg.conf ~/.gnupg/
|