Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/game-testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ There's multiple levels of stability:
| Ultimate Marvel vs Capcom 3 | Perfect | 60 FPS, no issues. | Online play works. |
| Ultra Street Fighter 4 | Perfect | 60 FPS, no issues. | Online play works. |
| Vampire Survivors | Perfect | 60 FPS, no issues. | Not applicable (single-player). |
| Unreal Tournament | Perfect | 60 FPS, no issues (native Linux). | Online play works. |
| Veloren | High | 50-60 FPS, minor issues. | Online play works. |
| Werewolf: The Apocalypse – Earthblood | Low | 20-40 FPS, heavy lag. | Not applicable (single-player). |
| WipeOut Phantom Edition | High | 50-60 FPS, stable. | Not applicable (single-player). |
Expand Down
26 changes: 25 additions & 1 deletion docs/postinstall.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ To update the drivers, you need to open the pacman config:
sudo nano /etc/pacman.conf
```

If you installed an older distro, pacman might refuse to run, citing the following error: `restricting filesystem access failed because Landlock is not supported by the kernel`. If you run into this problem, search for the line containing `DisableSandbox`, and uncomment it by deleting the `#` character from the beginning.
If you installed an older distro, pacman might refuse to run, citing the following error: `restricting filesystem access failed because Landlock is not supported by the kernel`. If you run into this problem, you can run the one liner below to disable the sandbox:

```bash
sudo sed -i'' -E "s|#DisableSandbox|DisableSandbox|" /etc/pacman.conf
```

If you installed a distro from the forums, you may have go to the `[Options]` section and delete the lines `IgnorePkg` and `IgnoreGroup`.

Expand Down Expand Up @@ -236,6 +240,26 @@ And there you go! You can change it back anytime of course.
In the past there were overclocked kernels, but alas they don't make them anymore. This is because overclocked kernels... didn't actually overclock the CPU.

Do not go and download an older kernel to try as they don't work anymore either!

# Enable Tearfree

To get rid of screen tearing when using X11 for just the current session, you can enable TearFree:
```bash
xrandr --output HDMI-A-0 --set TearFree on
```

To make it permenant, set a config with a one-liner:
```bash
sudo mkdir -p /etc/X11/xorg.conf.d && echo -e 'Section "Device"\n Identifier "AMD Graphics"\n Driver "amdgpu"\n Option "TearFree" "true"\nEndSection' | sudo tee /etc/X11/xorg.conf.d/20-amdgpu.conf
```

After a reboot, TearFree will be enabled permanently.

You can see if it was successful by running:
```bash
xrandr --prop | grep TearFree
```

## Install more applications
To play games, these are the recommended softwares:
- Steam
Expand Down