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
|
2022-08-21 10:27:27 -05:00
|
|
|
firefox: .firefox_env
|
2022-06-07 23:13:10 -05:00
|
|
|
install: .environment
|
2022-07-02 16:30:27 -05:00
|
|
|
|
2022-11-27 13:18:44 -06: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:
|
2022-11-27 14:12:11 -06:00
|
|
|
ln -sf $(CURDIR)/bspwm $(LOCATION)/
|
2021-05-25 12:47:11 -05:00
|
|
|
install_nvim:
|
2022-11-27 14:12:11 -06:00
|
|
|
ln -sf $(CURDIR)/nvim $(LOCATION)/
|
2021-05-25 12:47:11 -05:00
|
|
|
install_sx:
|
2022-11-27 14:12:11 -06:00
|
|
|
ln -sf $(CURDIR)/sx $(LOCATION)/
|
2021-05-25 12:47:11 -05:00
|
|
|
install_sxhkd:
|
2022-11-27 14:12:11 -06:00
|
|
|
ln -sf $(CURDIR)/sxhkd $(LOCATION)/
|
2021-05-25 12:47:11 -05:00
|
|
|
install_zathura:
|
2022-11-27 14:12:11 -06:00
|
|
|
ln -sf $(CURDIR)/zathura $(LOCATION)/
|
2022-02-05 22:58:21 -06:00
|
|
|
install_bash:
|
2022-11-27 14:12:11 -06:00
|
|
|
ln -sf $(CURDIR)/bash $(LOCATION)/
|
2022-02-05 22:58:21 -06:00
|
|
|
install_ssh:
|
2022-11-27 14:12:11 -06:00
|
|
|
ln -sf $(CURDIR)/ssh $(LOCATION)/
|
2022-02-05 22:58:21 -06:00
|
|
|
install_git:
|
2022-11-27 14:12:11 -06:00
|
|
|
ln -sf $(CURDIR)/git $(LOCATION)/
|
2022-06-07 23:46:20 -05:00
|
|
|
install_tridactyl:
|
2022-11-27 14:12:11 -06:00
|
|
|
ln -sf $(CURDIR)/tridactyl $(LOCATION)/
|
2022-06-13 13:58:42 -05:00
|
|
|
install_htop:
|
2022-11-27 14:12:11 -06:00
|
|
|
ln -sf $(CURDIR)/htop $(LOCATION)/
|
2022-06-18 15:41:52 -05:00
|
|
|
install_python:
|
2022-11-27 14:12:11 -06:00
|
|
|
ln -sf $(CURDIR)/python $(LOCATION)/
|
2022-06-07 23:13:10 -05:00
|
|
|
.environment:
|
2022-02-05 22:29:46 -06:00
|
|
|
sh environ
|
2022-07-02 16:30:27 -05:00
|
|
|
.firefox_env:
|
|
|
|
sh firefox_setup
|