-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
47 lines (32 loc) · 1022 Bytes
/
Copy pathMakefile
File metadata and controls
47 lines (32 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Note
# $@ - targets
# $< - sources
# Dummy targets
.PHONY: install install_remote clean dotfiles directories
# Default targets
all: dotfiles
neovim:
bash ./setup/nvim_setup.sh
${HOME}/.oh-my-zsh:
bash ./setup/zsh_ohmyzsh.sh
bash ./setup/zsh_ohmyzsh_plugins.sh
# This symlinks the dotfiles with stow
dotfiles:
echo "Ready for dots"
bash -c ./setup/backup_existing_dots.sh
stow -v -t ${HOME} bash
#stow -v -t ${HOME} git alacritty nvim lazygit ripgrep div bat tmux i3 bash
${HOME}/.fzf:
bash ./setup/fzf_setup.sh
install_apt_pi:
sudo apt-get install $$(cat ./packages/packages_pi.apt) -y
install_apt:
sudo apt-get install $$(cat ./packages/packages.apt) -y
binaries:
bash ./setup/get_binaries.sh
fonts:
bash sudo ./fonts/setup_mononoki.sh
#### The major targets that install for different systems ####
install: dotfiles install_apt neovim ${HOME}/.fzf ${HOME}/.oh-my-zsh fonts
install_remote: dotfiles neovim binaries ${HOME}/.fzf
install_pi: dotfiles install_apt_pi ${HOME}/.fzf fonts binaries