11 lines
211 B
Bash
Executable file
11 lines
211 B
Bash
Executable file
#!/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;
|