12 lines
289 B
Bash
12 lines
289 B
Bash
|
#!/bin/bash
|
||
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
||
|
|
||
|
. "../../../scripts/Arch/Devices/SurfaceBook2/install.sh";
|
||
|
. "../../../scripts/Arch/Collections/school.sh";
|
||
|
|
||
|
NEXTCLOUD_DIR="Nextcloud" \
|
||
|
INSTALL_FONTS=0 \
|
||
|
. "../../../scripts/Common/Config/UserProfile/install.sh";
|
||
|
|
||
|
popd > /dev/null;
|