dot/Makefile

40 lines
1.1 KiB
Makefile
Raw Normal View History

2021-05-10 22:27:15 +00:00
LOCATION="$(HOME)/.config"
2022-03-23 02:59:37 +00:00
DATA="$(HOME)/.local/share"
2023-01-04 05:12:51 +00:00
install_local: location_setup install_theme install_bspwm install_nvim install_sx install_sxhkd install_zathura install_bash install_ssh install_git install_tridactyl install_htop install_python
firefox: .firefox_env
2022-06-08 04:13:10 +00:00
install: .environment
2022-07-02 21:30:27 +00:00
location_setup:
2022-11-27 20:12:11 +00:00
mkdir -p $(LOCATION)/
2023-01-04 05:12:51 +00:00
install_theme:
2023-01-15 02:17:33 +00:00
mkdir -p $(HOME)/.themes
mkdir -p $(HOME)/.local/share/firefox/.themes
2023-01-04 05:12:51 +00:00
ln -sf $(CURDIR)/earth $(HOME)/.themes/
2023-01-15 02:17:33 +00:00
ln -sf $(CURDIR)/earth $(HOME)/.local/share/firefox/.themes
2021-05-25 17:47:11 +00:00
install_bspwm:
2022-11-27 20:12:11 +00:00
ln -sf $(CURDIR)/bspwm $(LOCATION)/
2021-05-25 17:47:11 +00:00
install_nvim:
2022-11-27 20:12:11 +00:00
ln -sf $(CURDIR)/nvim $(LOCATION)/
2021-05-25 17:47:11 +00:00
install_sx:
2022-11-27 20:12:11 +00:00
ln -sf $(CURDIR)/sx $(LOCATION)/
2021-05-25 17:47:11 +00:00
install_sxhkd:
2022-11-27 20:12:11 +00:00
ln -sf $(CURDIR)/sxhkd $(LOCATION)/
2021-05-25 17:47:11 +00:00
install_zathura:
2022-11-27 20:12:11 +00:00
ln -sf $(CURDIR)/zathura $(LOCATION)/
2022-02-06 04:58:21 +00:00
install_bash:
2022-11-27 20:12:11 +00:00
ln -sf $(CURDIR)/bash $(LOCATION)/
2022-02-06 04:58:21 +00:00
install_ssh:
2022-11-27 20:12:11 +00:00
ln -sf $(CURDIR)/ssh $(LOCATION)/
2022-02-06 04:58:21 +00:00
install_git:
2022-11-27 20:12:11 +00:00
ln -sf $(CURDIR)/git $(LOCATION)/
2022-06-08 04:46:20 +00:00
install_tridactyl:
2022-11-27 20:12:11 +00:00
ln -sf $(CURDIR)/tridactyl $(LOCATION)/
2022-06-13 18:58:42 +00:00
install_htop:
2022-11-27 20:12:11 +00:00
ln -sf $(CURDIR)/htop $(LOCATION)/
2022-06-18 20:41:52 +00:00
install_python:
2022-11-27 20:12:11 +00:00
ln -sf $(CURDIR)/python $(LOCATION)/
2022-06-08 04:13:10 +00:00
.environment:
sh environ
2022-07-02 21:30:27 +00:00
.firefox_env:
sh firefox_setup