Skip to content

Commit 9f8325e

Browse files
fix formatting in README
1 parent 1e4cfaa commit 9f8325e

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed

README.md

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ PICO-8 powered games launcher for the [PeX Console](https://pex-labs.com/)
5252

5353
<details>
5454
<summary>click to expand</summary>
55-
<div>
55+
5656
Download the latest pre-compiled binary titled `picolauncher-linux-x86_64.zip`. The unzip and navigate to the directory
5757
```sh
5858
unzip picolauncher-linux-x86_64.zip
@@ -63,6 +63,7 @@ Next, ensure that `pico8` is included in your path. In your `.bashrc` or equival
6363
```sh
6464
export PATH="$PATH:<path to pico8 directory>"
6565
```
66+
6667
For example
6768
```sh
6869
export PATH="$PATH:~/Downloads/pico-8/"
@@ -77,22 +78,24 @@ It is also possible to explicitly pass a binary to use to launch pico8 by settin
7778
```sh
7879
PICO8_BINARY=<path to pico8 binary> ./picolauncher
7980
```
81+
8082
For example
8183
```sh
8284
PICO8_BINARY=~/Downloads/pico-8/pico8 ./picolauncher
8385
```
84-
</div>
86+
8587
</details>
8688

8789
### Raspberry Pi
8890

8991
<details>
9092
<summary>click to expand</summary>
91-
<div>
93+
9294
First double check if you are running 64-bit or 32-bit Raspberry Pi OS.
9395
```sh
9496
uname -m
9597
```
98+
9699
If the output of the above command is `aarch64`, you are 64-bit, and if the output is `armv7` or something similar, you are 32-bit.
97100

98101
In the case that you are 64-bit, you should download the latest pre-compiled binary titled `picolauncher-linux-aarch64.zip`. Otherwise, download `picolauncher-linux-armv7.zip`. Similar to the above instructions, unzip and enter the directory
@@ -107,31 +110,33 @@ export PATH="$PATH:<path to pico8 directory>"
107110
```
108111

109112
When launching **PicoLauncher** and supplying the binary explicitly, if you are on 64-bit Raspberry Pi, ensure that you are using the `pico8_64` binary.
110-
</div>
113+
111114
</details>
112115

113116

114117
### Windows
115118

116119
<details>
117120
<summary>click to expand</summary>
118-
<div>
121+
119122
Download the `picolauncher-windows.zip` zip file from the latest releases and unzip it. If your pico8 binary doesn't reside at the default location of `C:\Program Files (x86)\PICO-8\pico8.exe`, you need to set the environment variable `PICO8_BINARY` before launching.
120123
```sh
121124
set PICO8_BINARY=<path to pico8>
122125
picolauncher.exe
123126
```
124127

125128
You can also do this graphically. First search up 'Environment Variables' in your start menu.
126-
<img src="media/windows_install/step1.png" width=50%">
129+
<img src="media/windows_install/step1.png" width=50%/>
130+
127131
Then in the 'System Properties' page, click the button titled 'Environment Variables...'
128-
<img src="media/windows_install/step2.png" width=50%">
132+
<img src="media/windows_install/step2.png" width=50%/>
133+
129134
Locate the variable titled 'Path' and click the 'Edit' button.
130-
<img src="media/windows_install/step3.png" width=50%">
135+
<img src="media/windows_install/step3.png" width=50%/>
136+
131137
Add a new path and set the value to the directory where you have installed pico8. If you used the windows installer for pico8, this should be set to `C:\Program Files (x86)\PICO-8\pico8.exe`
132-
<img src="media/windows_install/step4.png" width=50%">
138+
<img src="media/windows_install/step4.png" width=50%/>
133139

134-
</div>
135140
</details>
136141

137142
### Build from source

0 commit comments

Comments
 (0)