PortValhalla/scripts/Arch/Devies/Surface/install.sh

38 lines
864 B
Bash
Raw Normal View History

#!/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;
pacmanConf="/etc/pacman.conf";
if ! grep "^\[linux-surface\]$" "$pacmanConf"
{
echo "";
echo "[linux-surface]";
echo "Server = https://pkg.surfacelinux.com/arch/";
} | sudo tee -a "$pacmanConf" > /dev/null;
sudo pacman --noconfirm -Syu;
sudo pacman --noconfirm -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;
. "./camera.sh";
pushd > /dev/null;