Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correction to Arch Linux guide #1181

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
21 changes: 16 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,19 +157,30 @@ If you are building it by yourself, you need to enable multilib repository, by e
sudo nano /etc/pacman.conf
```

and uncomment:
and uncomment the lines in order to look like this:

```txt
#[multilib]
#Include = /etc/pacman.d/mirrorlist
```ini
[multilib]
Include = /etc/pacman.d/mirrorlist
```

then save the file and execute:
then save the file and execute the command to refresh databases:

```
sudo pacman -Syy
```

and install the 64 bit package with:

```
sudo pacman -S mangohud
```

For 32 bit package, install with:
```
sudo pacman -S lib32-mangohud
```

### Debian, Ubuntu

If you are using Debian 11 (Bullseye) or later, Ubuntu 21.10 (Impish) or later, or distro derived from them, to install the [MangoHud](https://tracker.debian.org/pkg/mangohud) package, execute:
Expand Down