mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
6 lines
234 B
Bash
6 lines
234 B
Bash
# Install wifi drivers for 2013-2015 MacBooks using the BCM4360 chip
|
|
if lspci -nnv | grep -A2 "14e4:43a0" | grep -q "106b:"; then
|
|
echo "Apple BCM4360 detected"
|
|
sudo pacman -S --noconfirm --needed broadcom-wl dkms linux-headers
|
|
fi
|