Skip to content

Instantly share code, notes, and snippets.

@Pan-Maciek
Created September 21, 2020 18:05
Show Gist options
  • Save Pan-Maciek/b93d0d40eea50f8a702fa9e0406c5c00 to your computer and use it in GitHub Desktop.
Save Pan-Maciek/b93d0d40eea50f8a702fa9e0406c5c00 to your computer and use it in GitHub Desktop.
Instalacja sterowników
#!/bin/bash
# install video card driver (manjaro only)
echo "Attempting to install video card driver"
sudo mhwd -a pci nonfree 0300
# check kernel version
kv=$(uname -r | awk -F'.' '{print $1$2}')
echo "Attempting to install network card driver"
# install network driver
sudo pacman -S "linux$kv-broadcom-wl"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment