40 lines
833 B
Bash
Executable File
40 lines
833 B
Bash
Executable File
#!/bin/sh
|
|
|
|
DIR=`pwd`
|
|
echo "DIR: $DIR"
|
|
ln -s $DIR/.zshrc ~/.zshrc
|
|
|
|
mkdir ~/.config/i3
|
|
ln -s $DIR/.config/i3/config ~/.config/i3/config
|
|
|
|
mkdir ~/.config/sway
|
|
ln -s $DIR/.config/sway/config ~/.config/sway/config
|
|
|
|
mkdir ~/.config/termite
|
|
ln -s $DIR/.config/termite/config ~/.config/termite/config
|
|
|
|
mkdir ~/.config/kitty
|
|
ln -s $DIR/.config/kitty/kitty.conf ~/.config/kitty/kitty.conf
|
|
|
|
ln -s $DIR/.config/compton.conf ~/.config/compton.conf
|
|
|
|
ln -s $DIR/.config/redshift ~/.config/redshift
|
|
|
|
ln -s $DIR/.i3blocks.conf ~/.i3blocks.conf
|
|
|
|
mkdir ~/.local/rofi
|
|
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
|
|
|
|
ln -s $DIR/.gitconfig ~/.gitconfig
|
|
|
|
#ln -s $DIR/.profile ~/.profile
|
|
ln -s $DIR/.zprofile ~/.zprofile
|