Skip to content

Commit ffe652a

Browse files
committed
rewrite(how-to/disable-mods): kbd for UI buttons
1 parent 8279d4c commit ffe652a

File tree

5 files changed

+25
-33
lines changed

5 files changed

+25
-33
lines changed

how-to/disable-mods/curseforge-app.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ Do NOT disable "API" or "library" mods, because the other mods need them.
1010

1111
1. Open the **CurseForge App**
1212
2. Select **Minecraft** from the grid or from the sidebar
13-
3. In **My Modpacks**, click on **Fabulously Optimized**
14-
4. Click on the **three dots** button
15-
5. Click on **Profile Options**
16-
6. Check the **Allow content management for this profile** checkbox
17-
7. Click on **Done**
13+
3. In **My Modpacks**, click on <kbd>**Fabulously Optimized**</kbd>
14+
4. Click on the <kbd>**three dots**</kbd> button
15+
5. Click on <kbd>**Profile Options**</kbd>
16+
6. Check the <kbd>**Allow content management for this profile**</kbd> checkbox
17+
7. Click on <kbd>**Done**</kbd>
1818
8. Find the mod you want to disable
1919
9. Toggle the knob
2020
10. If you want to re-enable the mod, toggle the knob again

how-to/disable-mods/modrinth-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Do NOT disable "API" or "library" mods, because the other mods need them.
99
{% endhint %}
1010

1111
1. Open the **Modrinth App**
12-
2. Click on the **Library**
13-
3. Click on **Fabulously Optimized**
12+
2. Click on the <kbd>**Library**</kbd>
13+
3. Click on <kbd>**Fabulously Optimized**</kbd>
1414
4. Find the mod you want to disable
1515
5. Toggle the knob
1616
6. If you want to re-enable the mod, toggle the knob again

how-to/disable-mods/multimc.md

Lines changed: 14 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ Tutorial by [Ultrasonic1209](https://github.com/Ultrasonic1209) based on [Remty5
1919
{% endhint %}
2020

2121
1. Open **MultiMC**
22-
2. Right-click the FO instance
23-
3. Click on the **Instance Folder** button
24-
4. While holding Shift, right-click inside of the folder
25-
5. Click on **Open in Terminal** or **Open with PowerShell** or similar
26-
6. Run the following commands to download the scripts that will disable the mods:
22+
2. Right-click on <kbd>**Fabulously Optimized**</kbd>
23+
3. Click on the <kbd>**Instance Folder**</kbd> button
24+
4. While holding <kbd>⇧ Shift</kbd>, right-click inside of the folder
25+
5. Click on <kbd>**Open in Terminal**</kbd> or <kbd>**Open with PowerShell**</kbd> or similar
26+
6. Run the following commands to download the scripts that will disable the mods:
2727

2828
```powershell
2929
(Invoke-WebRequest -Uri "https://raw.githubusercontent.com/Fabulously-Optimized/fabulously-optimized/main/Packwiz/pre-launch.ps1" -OutFile "pre-launch.ps1")
@@ -36,8 +36,8 @@ Tutorial by [Ultrasonic1209](https://github.com/Ultrasonic1209) based on [Remty5
3636
9. Paste the name of the mod in the line you found in _step 7_
3737
10. Disable more mods by adding them under _line 4_ with the same format
3838
11. Go back to **MultiMC**
39-
12. Click on the FO instance
40-
13. Click on **Edit Instance**
39+
12. Click on <kbd>**Fabulously Optimized**</kbd>
40+
13. Click on <kbd>**Edit Instance**</kbd>
4141
14. Replace the pre-launch command with the following:
4242
4343
```powershell
@@ -61,13 +61,13 @@ Not fully tested on macOS!
6161
{% endhint %}
6262

6363
1. Open **MultiMC**
64-
2. Right-click the FO instance
65-
3. Click on the **Instance Folder** button
64+
2. Right-click on <kbd>**Fabulously Optimized**</kbd>
65+
3. Click on the <kbd>**Instance Folder**</kbd> button
6666
4. Right-click inside of the folder
67-
5. Click on **Open in Terminal**
67+
5. Click on <kbd>**Open in Terminal**</kbd>
6868
* On macOS follow [instructions to get the Terminal there](https://petenetlive.com/KB/Article/0001060)
69-
6. Install [jq](https://stedolan.github.io/jq/download), which will automatically adapt the script to your Minecraft version
70-
7. Run the following commands to download the scripts that will disable the mods:
69+
6. Install [`jq`](https://stedolan.github.io/jq/download), which will automatically adapt the script to your Minecraft version
70+
7. Run the following commands to download the scripts that will disable the mods:
7171

7272
```sh
7373
curl -Os 'https://raw.githubusercontent.com/Fabulously-Optimized/fabulously-optimized/main/Packwiz/pre-launch.sh' | curl -Os 'https://raw.githubusercontent.com/Fabulously-Optimized/fabulously-optimized/main/Packwiz/post-exit.sh' && chmod +x pre-launch.sh post-exit.sh
@@ -81,8 +81,8 @@ Not fully tested on macOS!
8181
12. If you leave a line empty, delete the corresponding one starting on _line 28_
8282
13. If you need to disable more than 6 mods, add lines both under `mod5=` and `$mod5.jar\`
8383
14. Go back to **MultiMC**
84-
15. Click on the FO instance
85-
16. Click on **Edit Instance**
84+
15. Click on <kbd>**Fabulously Optimized**</kbd>
85+
16. Click on <kbd>**Edit Instance**</kbd>
8686
17. Replace the pre-launch command with the following:
8787
8888
```sh
@@ -94,13 +94,5 @@ Not fully tested on macOS!
9494
```sh
9595
../pre-launch.ps1
9696
```
97-
98-
1. Open **MultiMC**
99-
2. Select the FO instance
100-
3. Click on the **Edit Instance** button
101-
4. Click on **Loader mods**
102-
5. Find the mod you want to disable
103-
6. Uncheck the checkbox
104-
7. If you want to re-enable the mod, check the checkbox again
10597
{% endtab %}
10698
{% endtabs %}

how-to/disable-mods/prism-launcher.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ Do NOT disable "API" or "library" mods, because the other mods need them.
99
{% endhint %}
1010

1111
1. Open the **Prism Launcher**
12-
2. Select the FO instance
13-
3. Click on **Edit**
14-
4. Click on **Mods**
12+
2. Select <kbd>**Fabulously Optimized**</kbd>
13+
3. Click on <kbd>**Edit**</kbd>
14+
4. Click on <kbd>**Mods**</kbd>
1515
5. Find the mod you want to disable
1616
6. Uncheck the checkbox
1717
7. If you want to re-enable the mod, check the checkbox again

how-to/disable-mods/vanilla.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Do NOT disable "API" or "library" mods, because the other mods need them.
1010

1111
1. Open the **Minecraft Launcher**
1212
2. Select the Fabric installation
13-
3. Click on **Folder** button
13+
3. Click on <kbd>**Folder**</kbd> button
1414
4. Open the `mods/` folder
1515
5. Find the mod you want to disable
1616
6. Rename the mod from `mod-name.jar` to `mod-name.jar.disabled`

0 commit comments

Comments
 (0)