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";
|
|
|
|
|
|
|
|
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;
|