File tree 3 files changed +52
-32
lines changed
3 files changed +52
-32
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Tools and configurations
4
4
5
- ## Requirements
6
-
7
- ### mac
8
-
9
- ``` bash
10
- xcode-select --install
11
- ```
12
-
13
- ### archlinux
14
-
15
- ``` bash
16
- nmcli device wifi connect " <SSID>" password " <password>"
17
- ```
18
-
19
5
> [ !IMPORTANT]
20
- > Open the file ` /etc/makepkg.conf ` and search for the line that starts with ` OPTIONS= ` .
21
- > Change ` debug ` to ` !debug ` . This prevents installing ` *-debug ` packages.
6
+ > Read docs before running the script
22
7
23
- Check these in ` /etc/pacman.conf `
24
-
25
- ``` bash
26
- Color
27
- CheckSpace
28
- VerbosePkgLists
29
- ParallelDownloads = 15
30
- ILoveCandy
31
- ```
8
+ - [ archlinux] ( /docs/archlinux.md )
9
+ - [ mac] ( /docs/mac.md )
32
10
33
11
## Usage
34
12
35
13
``` bash
36
14
./main.sh
37
15
```
38
16
39
- ## Post install
40
-
41
- Open ` tmux ` and press ` Ctrl-a + I ` to install all plugins
42
-
43
- ## Hints
17
+ ## After
44
18
45
- > [ !TIP]
46
- > To export brew packages to a text file: ` brew leaves > brew.txt `
19
+ - open tmux with ` tmux ` .
20
+ If plugins are not auto installed on first run,
21
+ press ` Ctrl-a + I ` to install all plugins.
Original file line number Diff line number Diff line change
1
+ # archlinux
2
+
3
+ ``` bash
4
+ nmcli device wifi connect " <SSID>" password " <password>"
5
+ ```
6
+
7
+ ## system config
8
+
9
+ > [ !IMPORTANT]
10
+ > Open the file ` /etc/makepkg.conf ` and search for the line that starts with ` OPTIONS= ` .
11
+ > Change ` debug ` to ` !debug ` . This prevents installing ` *-debug ` packages.
12
+
13
+ Check these in ` /etc/pacman.conf `
14
+
15
+ ``` bash
16
+ Color
17
+ CheckSpace
18
+ VerbosePkgLists
19
+ ParallelDownloads = 15
20
+ ILoveCandy
21
+ ```
22
+
23
+ ## virtualbox
24
+
25
+ Read [ arch wiki] ( https://wiki.archlinux.org/title/VirtualBox )
26
+
27
+ - update system with ` yay -Syu ` and reboot (when necessary)
28
+
29
+ - install virtualbox with
30
+
31
+ ``` bash
32
+ yay -S virtualbox virtualbox-guest-iso
33
+
34
+ # select the option: virtualbox-host-modules-arch
35
+ ```
36
+
37
+ - reboot to load necessary kernel modules
Original file line number Diff line number Diff line change
1
+ # mac
2
+
3
+ ``` bash
4
+ xcode-select --install
5
+ ```
6
+
7
+ > [ !TIP]
8
+ > To export brew packages to a text file: ` brew leaves > brew.txt `
You can’t perform that action at this time.
0 commit comments