16 lines
389 B
Bash
Executable file
16 lines
389 B
Bash
Executable file
#!/bin/bash
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
. "../../Software/yay/install.sh";
|
|
. "../../Software/nvidia-dkms/install.sh";
|
|
. "../../Software/xow/install.sh";
|
|
. "../Surface/install.sh";
|
|
|
|
yay --noconfirm -Syu \
|
|
surface-dtx-daemon-bin \
|
|
surface-control-bin;
|
|
|
|
sudo systemctl enable surface-dtx-daemon.service
|
|
systemctl enable --user surface-dtx-userd.service
|
|
|
|
popd > /dev/null;
|