You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+55Lines changed: 55 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,4 +6,59 @@ Sometimes, I have to reinstall everything I need on brand new Macs or Hackintosh
6
6
7
7
**Don't run everything blindlessly.** I reunited these scripts for my own use, a lot of commands or packages may not suit you. Please fork the project or review the files to comment things you don't want.
8
8
9
+
## Full Installation
10
+
11
+
If you want to install _everything_, just do:
12
+
13
+
```sh
14
+
git clone git@github.com:kinoute/macos-setup.git
15
+
cd macos-setup
16
+
bash install.sh
17
+
```
18
+
19
+
If you can't run the script, you might have to change its attributes. Just do:
20
+
21
+
```bash
22
+
chmod +x install.sh
23
+
```
24
+
25
+
When started, you will be asked for your password just once in order to install/edit several things on macOS.
26
+
27
+
This script basically calls a few sub-scripts that do their own business listed below.
28
+
29
+
## Manual Installation
30
+
31
+
If there are some packages or applications you don't want to install, you have two choices:
32
+
33
+
* Either you edit the installation files and remove the things you don't want ;
34
+
* Either you run manually the only installation sub-scripts you're interested in.
35
+
36
+
Here are all the sub-scripts that are called when running the full installation:
37
+
38
+
### brew.sh
39
+
40
+
This script first checks if you have [homebrew](https://brew.sh) installed on your machine. If not, it downloads and installs it. Then it installs a lot of binaries through homebrew.
41
+
42
+
To only run this script, do:
43
+
44
+
```sh
45
+
cd macos-setup/scripts
46
+
bash brew.sh
47
+
# you might need to do chmod +x brew.sh before to run this script
48
+
```
49
+
50
+
The comments inside the file speak for themselves but to sum up, this script installs:
0 commit comments