7 lines
129 B
Bash
7 lines
129 B
Bash
|
#!/bin/bash
|
||
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
||
|
|
||
|
yay --noconfirm -Syu xow;
|
||
|
. "../../Config/xow/install.sh";
|
||
|
|
||
|
popd > /dev/null;
|