make sure that .config directory is created
This commit is contained in:
parent
40bdc21829
commit
be04461863
4
Makefile
4
Makefile
|
@ -1,9 +1,11 @@
|
||||||
LOCATION="$(HOME)/.config"
|
LOCATION="$(HOME)/.config"
|
||||||
DATA="$(HOME)/.local/share"
|
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_tridactyl install_htop install_python
|
install_local: location_setup install_bspwm install_nvim install_sx install_sxhkd install_zathura install_simplestatus install_bash install_ssh install_git install_tridactyl install_htop install_python
|
||||||
firefox: .firefox_env
|
firefox: .firefox_env
|
||||||
install: .environment
|
install: .environment
|
||||||
|
|
||||||
|
location_setup:
|
||||||
|
mkdir -p $(LOCATION) $(DATA)
|
||||||
install_bspwm:
|
install_bspwm:
|
||||||
ln -sf $(CURDIR)/bspwm $(LOCATION)/bspwm
|
ln -sf $(CURDIR)/bspwm $(LOCATION)/bspwm
|
||||||
install_nvim:
|
install_nvim:
|
||||||
|
|
Loading…
Reference in New Issue