2019-02-06 19:46:13 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
DIR=`pwd`
|
2019-07-24 12:01:51 +02:00
|
|
|
echo "DIR: $DIR"
|
2019-02-06 19:46:13 +01:00
|
|
|
ln -s $DIR/.zshrc ~/.zshrc
|
|
|
|
|
2019-07-24 12:01:51 +02:00
|
|
|
mkdir ~/.config/i3
|
2019-02-06 19:46:13 +01:00
|
|
|
ln -s $DIR/.config/i3/config ~/.config/i3/config
|
|
|
|
|
2019-07-24 12:01:51 +02:00
|
|
|
mkdir ~/.config/sway
|
2019-02-06 19:46:13 +01:00
|
|
|
ln -s $DIR/.config/sway/config ~/.config/sway/config
|
|
|
|
|
2019-07-24 12:01:51 +02:00
|
|
|
mkdir ~/.config/termite
|
2019-02-06 19:46:13 +01:00
|
|
|
ln -s $DIR/.config/termite/config ~/.config/termite/config
|
|
|
|
|
2020-09-01 00:54:56 +02:00
|
|
|
mkdir ~/.config/kitty
|
|
|
|
ln -s $DIR/.config/kitty/kitty.conf ~/.config/kitty/kitty.conf
|
|
|
|
|
2019-07-24 12:01:51 +02:00
|
|
|
ln -s $DIR/.config/compton.conf ~/.config/compton.conf
|
2019-02-06 19:46:13 +01:00
|
|
|
|
|
|
|
ln -s $DIR/.config/redshift ~/.config/redshift
|
|
|
|
|
|
|
|
ln -s $DIR/.i3blocks.conf ~/.i3blocks.conf
|
|
|
|
|
2019-07-24 12:01:51 +02:00
|
|
|
mkdir ~/.local/rofi
|
2019-02-06 19:46:13 +01:00
|
|
|
ln -s $DIR/.local/rofi/config ~/.local/rofi/config
|
|
|
|
|
|
|
|
ln -s $DIR/.spacemacs ~/.spacemacs
|
|
|
|
|
|
|
|
ln -s $DIR/.vimrc ~/.vimrc
|
|
|
|
|
|
|
|
ln -s $DIR/.Xresources ~/.Xresources
|
|
|
|
|
|
|
|
ln -s $DIR/.zlogin ~/.zlogin
|
2019-07-24 12:01:51 +02:00
|
|
|
|
|
|
|
ln -s $DIR/.gitconfig ~/.gitconfig
|
2020-05-08 05:10:34 +02:00
|
|
|
|
2020-09-01 00:54:56 +02:00
|
|
|
#ln -s $DIR/.profile ~/.profile
|
2020-05-08 05:10:34 +02:00
|
|
|
ln -s $DIR/.zprofile ~/.zprofile
|