dotfiles/install.sh

28 lines
446 B
Bash
Raw Normal View History

2020-08-01 12:05:15 +00:00
#!/bin/sh
2020-09-24 16:46:14 +00:00
# run this function for files that go directily into the home directory
2020-08-01 12:05:15 +00:00
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
2020-08-22 16:04:56 +00:00
gohome .Xresources
2020-08-01 12:05:15 +00:00
goconfig bspwm
goconfig dunst
2020-08-01 14:43:35 +00:00
goconfig polybar
2020-08-01 12:05:15 +00:00
goconfig kitty
goconfig sxhkd
goconfig picom.conf
2020-08-22 16:04:56 +00:00
goconfig nvim
2020-08-24 19:47:54 +00:00
#install fonts
cp -r $PWD/polybar/fonts/* ~/.local/share/fonts