32 lines
747 B
Bash
Executable file
32 lines
747 B
Bash
Executable file
#!/bin/bash
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
. "../../Software/yay/install.sh";
|
|
|
|
curl -s https://raw.githubusercontent.com/linux-surface/linux-surface/master/pkg/keys/surface.asc \
|
|
| sudo pacman-key --add -;
|
|
|
|
sudo pacman-key --finger 56C464BAAC421453;
|
|
sudo pacman-key --lsign-key 56C464BAAC421453;
|
|
|
|
{
|
|
echo "";
|
|
echo "[linux-surface]";
|
|
echo "Server = https://pkg.surfacelinux.com/arch/";
|
|
} | sudo tee -a /etc/pacman.conf > /dev/null;
|
|
|
|
sudo pacman -Syu;
|
|
|
|
sudo pacman -Sy \
|
|
intel-ucode \
|
|
linux-surface \
|
|
linux-surface-headers \
|
|
iptsd \
|
|
intel-ucode \
|
|
linux-firmware-marvell;
|
|
|
|
sudo systemctl enable bluetooth --now;
|
|
sudo grub-mkconfig -o /boot/grub/grub.cfg;
|
|
yay -Syu libwacom-surface;
|
|
|
|
pushd > /dev/null;
|