12 lines
211 B
Bash
12 lines
211 B
Bash
|
#!/bin/bash
|
||
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
||
|
|
||
|
. "../../Software/yay/install.sh";
|
||
|
. "../Surface/install.sh";
|
||
|
|
||
|
yay --noconfirm -Syu \
|
||
|
surface-dtx-daemon-bin \
|
||
|
surface-control-bin;
|
||
|
|
||
|
popd > /dev/null;
|