dotfiles/install.sh
2020-08-01 15:05:15 +03:00

22 lines
347 B
Bash
Executable file

#!/bin/sh
# run this functions for files that go directily into the home directory
gohome() {
ln -sf $PWD/$1 ~/
}
# run this function for files that go into the .config file
goconfig() {
ln -sf $PWD/$1 ~/.config/
}
gohome .bashrc
gohome .profile
gohome .vimrc
goconfig bspwm
goconfig dunst
goconfig kitty
goconfig sxhkd
goconfig picom.conf