dot_testing/Makefile

40 lines
1.2 KiB
Makefile
Raw Normal View History

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