remove cp -r and replace with ln -sf for integration with git

This commit is contained in:
randomuser 2022-06-07 23:43:09 -05:00
parent e2b44e8ea2
commit 69eb964b86
1 changed files with 9 additions and 11 deletions

View File

@ -3,24 +3,22 @@ DATA="$(HOME)/.local/share"
install_local: install_bspwm install_nvim install_sx install_sxhkd install_zathura install_simplestatus install_bash install_ssh install_git install_local: install_bspwm install_nvim install_sx install_sxhkd install_zathura install_simplestatus install_bash install_ssh install_git
install: .environment install: .environment
install_bspwm: install_bspwm:
cp -r bspwm $(LOCATION) ln -sf $(CURDIR)/bspwm $(LOCATION)/bspwm
install_nvim: install_nvim:
cp -r nvim $(LOCATION) ln -sf $(CURDIR)/nvim $(LOCATION)/nvim
install_sx: install_sx:
cp -r sx $(LOCATION) ln -sf $(CURDIR)/sx $(LOCATION)/sx
install_sxhkd: install_sxhkd:
cp -r sxhkd $(LOCATION) ln -sf $(CURDIR)/sxhkd $(LOCATION)/sxhkd
install_vimb:
cp -r vimb $(LOCATION)
install_zathura: install_zathura:
cp -r zathura $(LOCATION) ln -sf $(CURDIR)/zathura $(LOCATION)/zathura
install_simplestatus: install_simplestatus:
cp -r simplestatus $(LOCATION) ln -sf $(CURDIR)/simplestatus $(LOCATION)/simplestatus
install_bash: install_bash:
cp -r bash $(LOCATION) ln -sf $(CURDIR)/bash $(LOCATION)/bash
install_ssh: install_ssh:
cp -r ssh $(LOCATION) ln -sf $(CURDIR)/ssh $(LOCATION)/ssh
install_git: install_git:
cp -r git $(LOCATION) ln -sf $(CURDIR)/git $(LOCATION)/git
.environment: .environment:
sh environ sh environ