dotfiles/install.sh
2020-09-24 19:46:14 +03:00

28 lines
460 B
Bash
Executable file

#!/bin/sh
# run this function 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
gohome .Xresources
goconfig bspwm
goconfig dunst
goconfig polybar
goconfig kitty
goconfig sxhkd
goconfig picom.conf
goconfig nvim
#install fonts
cp -r $PWD/polybar/fonts/* ~/.local/share/fonts