-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
70 lines (50 loc) · 2.03 KB
/
Makefile
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
default: link-git link-tmux link-dircolors zsh-shell link-fastfetch
# ============================================================================
link-git:
$(info Linking .gitconfig)
@ln -f ./.gitconfig ~/
# =============================================================================
link-tmux:
$(info Linking .tmux.conf)
@ln -f ./.tmux/.tmux.conf ~/
$(info Linking .tmux.conf.local)
@ln -f ./my_tmux/.tmux.conf.local ~/
# =============================================================================
link-dircolors:
$(info Linking .dircolors)
@ln -f ./shell/.dircolors ~/.dircolors
# =============================================================================
link-fastfetch:
$(info Linking fastfetch)
@mkdir -p ~/.config/fastfetch
@ln -f ./shell/fastfetch_config.jsonc ~/.config/fastfetch/config.jsonc
# =============================================================================
zsh-shell:
$(info Linking .zshrc)
@ln -f ./shell/.zshrc ~/.zshrc
$(info run chsh -s $(command -v zsh) to make zsh the default shell.)
# =============================================================================
link-i3:
$(info Linking i3wm configuration file)
@mkdir -p ~/.config/i3/
@ln -f ./i3/i3.config ~/.config/i3/config
$(info Linking .lock.sh)
@ln -f ./.lock.sh ~/.lock.sh
$(info Linking rofi.conf)
@mkdir -p ~/.config/rofi/
@ln -f ./rofi/rofi.conf ~/.config/rofi/config
# =============================================================================
link-qutebrowser:
$(info Linking qutebrowser config.py)
@mkdir -p ~/.config/qutebrowser/
@ln -f ./qutebrowser/config.py ~/.config/qutebrowser/config.py
# =============================================================================
link-compton:
$(info Linking compton.conf)
@ln -f ./compton.conf ~/.config/compton.conf
# =============================================================================
link-sage:
$(info Linking init.sage)
@mkdir -p ~/.sage/
@ln -f ./sage/init.sage ~/.sage/init.sage
# =============================================================================