Skip to content

Commit 681683e

Browse files
committed
readme
1 parent 403c49e commit 681683e

File tree

3 files changed

+52
-32
lines changed

3 files changed

+52
-32
lines changed

README.md

Lines changed: 7 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -2,45 +2,20 @@
22

33
Tools and configurations
44

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-
195
> [!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
227
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)
3210

3311
## Usage
3412

3513
```bash
3614
./main.sh
3715
```
3816

39-
## Post install
40-
41-
Open `tmux` and press `Ctrl-a + I` to install all plugins
42-
43-
## Hints
17+
## After
4418

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.

docs/archlinux.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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

docs/mac.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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`

0 commit comments

Comments
 (0)