Skip to content

Commit d035d6c

Browse files
Fix stuff
1 parent 8ba3c13 commit d035d6c

File tree

1 file changed

+19
-14
lines changed

1 file changed

+19
-14
lines changed

docs/building/desktop.md

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,28 +14,33 @@ sudo apt install libv4l-dev # For webcam support
1414
## Build Process
1515

1616
1. **Navigate to the Repository**:
17-
```bash
18-
cd ~/MicroPythonOS/MicroPythonOS
19-
```
17+
18+
```bash
19+
cd ~/MicroPythonOS/MicroPythonOS
20+
```
2021

2122
2. **Build for Linux**:
22-
```bash
23-
./scripts/build_lvgl_micropython.sh unix dev
24-
```
23+
24+
```bash
25+
./scripts/build_lvgl_micropython.sh unix dev
26+
```
2527

2628
3. **Build for MacOS** (untested):
27-
```bash
28-
./scripts/build_lvgl_micropython.sh macOS dev
29-
```
29+
30+
```bash
31+
./scripts/build_lvgl_micropython.sh macOS dev
32+
```
3033

3134
## Running on Desktop
3235

33-
1. Download a release (e.g., `MicroPythonOS_amd64_Linux_0.0.6`) or use your build.
36+
1. Download a release (e.g., `MicroPythonOS_amd64_Linux_0.0.8`) or use your build.
3437
2. Run the application:
35-
```bash
36-
cd internal_filesystem/
37-
/path/to/MicroPythonOS_amd64_Linux_0.0.6 -X heapsize=32M -v -i -c "$(cat boot_unix.py main.py)"
38-
```
38+
39+
```bash
40+
cd internal_filesystem/
41+
/path/to/MicroPythonOS_amd64_Linux_0.0.8 -X heapsize=32M -v -i -c "$(cat boot_unix.py main.py)"
42+
```
43+
3944
3. Check `scripts/run_on_desktop.sh` for options like fullscreen or direct app launch.
4045

4146
## Notes

0 commit comments

Comments
 (0)