Skip to content

Commit

Permalink
docs: update pop os installation instruction
Browse files Browse the repository at this point in the history
  • Loading branch information
tuananh authored and jackpot51 committed May 1, 2024
1 parent 4473999 commit f6793a7
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,30 @@ sudo setenforce 0
sudo systemctl restart gdm
```

#### Update udev rules for NVIDIA users

```shell
sudo nano /usr/lib/udev/rules.d/61-gdm.rules
```

Looks for `LABEL="gdm_prefer_xorg"` and `LABEL="gdm_disable_wayland"`, add `#` to the `RUN` statement so it will look like this

```
LABEL="gdm_prefer_xorg"
#RUN+="/usr/libexec/gdm-runtime-config set daemon PreferredDisplayServer xorg"
GOTO="gdm_end"
LABEL="gdm_disable_wayland"
#RUN+="/usr/libexec/gdm-runtime-config set daemon WaylandEnable false"
GOTO="gdm_end"
```

Restart gdm

```shell
sudo systemctl restart gdm
```

#### Install COSMIC
`sudo apt install cosmic-*`

Expand Down

0 comments on commit f6793a7

Please sign in to comment.