-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
73 lines (57 loc) · 1.32 KB
/
Makefile
File metadata and controls
73 lines (57 loc) · 1.32 KB
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
70
71
72
73
DOTFILES := $(shell pwd)
.PHONY: help
help:
@ grep "^[a-zA-Z].*:" Makefile | cut -d: -f1 | grep -v "DOTFILES"
.PHONY: lint-sh
lint-sh:
@ rg --files -g '*.sh' -g 'scripts/*' -g '*/setup.sh' | while IFS= read -r file; do \
first_line=$$(head -n 1 "$$file"); \
case "$$first_line" in *python*|*"uv run --script"*) continue ;; esac; \
shellcheck -x --shell=bash "$$file"; \
done
.PHONY: paru
paru:
@ sudo pacman -S --needed base-devel
@ git clone https://aur.archlinux.org/paru.git /tmp/paru
@ cd /tmp/paru && makepkg -si --noconfirm
.PHONY: git
git:
@ ${DOTFILES}/git/setup.sh
.PHONY: fonts
fonts:
@ $(DOTFILES)/fonts/setup.sh
.PHONY: code
code:
@ $(DOTFILES)/code/setup.sh
.PHONY: agents
agents:
@ $(DOTFILES)/agents/setup.sh
.PHONY: zed
zed:
@ $(DOTFILES)/zed/setup.sh
.PHONY: terminal
terminal:
@ $(DOTFILES)/terminal/setup.sh
.PHONY: hypr
hypr:
@ ${DOTFILES}/hypr/setup.sh
.PHONY: desktop
desktop:
@ ${DOTFILES}/desktop/setup.sh
.PHONY: system
system:
@ $(DOTFILES)/system/setup.sh
.PHONY: maintenance
maintenance:
@ ${DOTFILES}/scripts/run-maintenance-tasks
.PHONY: zephyr
zephyr:
@ ${DOTFILES}/hosts/zephyr/setup.sh
.PHONY: helix
helix:
@ ${DOTFILES}/hosts/helix/setup.sh
.PHONY: post-installation
post-installation:
@ echo "GPU Setup"
@ echo "Pacman/paru config"
@ echo "Performance Kernel Parameters"