πNvidia Drivers
Use at your own discretion
There are many cases reported that devices with Nvidia cards have different issues from strange colored screens, distorted screens to blank screens at all.

This is a common Nvidia driver issue, still the following way of Nvidia driver installation via the Terminal may help (try to boot into recovery mode if the screen color makes it impossible).
If you have never added a PPA on your system, you might need to run this first:
sudo apt install -y software-properties-common
Add the Nvidia drivers' repository, get all updates and upgrade the distro.
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt update
sudo apt upgrade
Check the repository for the latest driver:
sudo apt search nvidia-driver
Run the following:
sudo apt install linux-headers-$(uname -r)
Install the latest driver found (535 is the latest at the moment of writing the guide):
sudo apt install nvidia-driver-535
Reboot.
Thanks this Reddit post for the method.
Last updated