forked from endeavouros-team/endeavouros-i3wm-setup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
79 lines (62 loc) · 1.92 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
70
71
72
73
74
75
76
77
78
79
SHELL := /usr/bin/env bash
list:
@echo "0. make endeavour-default"
@echo "1. make packages"
@echo "1.1 make xpackages"
@echo "1.2 make waylandpackages"
@echo "2. make work"
@echo "3. make docker"
@echo "4. make k8s"
@echo "6. make config"
@echo "7. make theme"
@echo "8. make zsh"
@echo "9. make system"
@echo "10. make name='user.name' email='user.mail' git"
@echo "==== EXTRA ===="
@echo "11. make background BACKGROUNDS_DIR_PATH BACKGROUND_FULL_NAME"
@echo "12. make fstab (make sure to change this according to your needs)"
@echo "13. make acpid DISPLAY_NAME AUTORANDR_SETTING (its best to do this manually in the script)"
@echo "14. make nvidia"
acpid:
./custom-scripts/install-acpid-events.sh $(display_name) $(autorandr_setting)
background:
./custom-scripts/set-backgrounds.sh $(backgrounds_path) $(background)
config:
./custom-scripts/install-configs.sh
git:
./custom-scripts/git-config.sh $(name) $(email)
docker:
./custom-scripts/install-containerd.sh
./custom-scripts/install-docker.sh
endeavour-default:
./i3_install
theme:
./custom-scripts/install-fonts.sh
./custom-scripts/install-cursor.sh
./custom-scripts/install-theme.sh
./custom-scripts/fix-icons.sh
killall picom
fstab:
./custom-scripts/only-for-me/set-fstab.sh
./custom-scripts/only-for-me/auto-unmount.sh
k8s:
./custom-scripts/install-k8s.sh
nvidia:
sudo pacman -Sy --needed --noconfirm nvidia-inst
nvidia-inst
packages:
./custom-scripts/install-packages.sh
./custom-scripts/install-external-packages.sh
xpackages:
./custom-scripts/install-specific-packages.sh "custom-scripts/xpkglist.txt"
waylandpackages:
./custom-scripts/install-specific-packages.sh "custom-scripts/waylandpkglist.txt"
system:
./custom-scripts/system.sh
./custom-scripts/install-mirrorlist-updater.sh
work:
./custom-scripts/work/install-packages.sh
./custom-scripts/work/install-vm.sh
./custom-scripts/work/stop-onedrive.sh
zsh:
./custom-scripts/install-zsh.sh