2023-04-04 15:16:19 +00:00
|
|
|
#!/bin/bash
|
|
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
|
|
|
|
. "../../Software/yay/install.sh";
|
2023-04-17 08:21:00 +00:00
|
|
|
. "../../Software/nvidia-dkms/install.sh";
|
2023-07-27 19:24:09 +00:00
|
|
|
. "../../Software/xone/install.sh";
|
2023-04-04 15:16:19 +00:00
|
|
|
. "../Surface/install.sh";
|
|
|
|
|
2024-03-15 07:40:36 +00:00
|
|
|
{
|
|
|
|
echo "# vim:set ft=sh";
|
|
|
|
echo "MODULES=(pinctrl_sunrisepoint surface_dtx)";
|
|
|
|
} | sudo tee /etc/mkinitcpio.conf.d/surface-book-2.conf;
|
|
|
|
|
2023-04-04 15:16:19 +00:00
|
|
|
yay --noconfirm -Syu \
|
|
|
|
surface-dtx-daemon-bin \
|
|
|
|
surface-control-bin;
|
|
|
|
|
2023-04-06 11:41:20 +00:00
|
|
|
sudo systemctl enable surface-dtx-daemon.service
|
|
|
|
systemctl enable --user surface-dtx-userd.service
|
|
|
|
|
2023-04-04 15:16:19 +00:00
|
|
|
popd > /dev/null;
|