2023-04-17 08:28:11 +00:00
|
|
|
#!/bin/bash
|
|
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
# Set Hostname
|
|
|
|
sudo hostnamectl set-hostname ManuSurface;
|
|
|
|
|
|
|
|
source "../../../scripts/PopOS/Scripts/preinstall.sh";
|
|
|
|
source "../../../scripts/PopOS/OS/install.sh";
|
2024-03-27 08:09:30 +00:00
|
|
|
source "../../../scripts/Debian/Drivers/SurfaceBook2/Setup/install.sh";
|
2023-04-17 08:28:11 +00:00
|
|
|
source "../../../scripts/PopOS/Software/Collections/school.sh";
|
2023-05-03 16:34:30 +00:00
|
|
|
INSTALL_FONTS=1 NEXTCLOUD_DIR="${NEXTCLOUD_DIR}" source "../../../scripts/Common/Config/UserProfile/install.sh";
|
2023-04-17 08:28:11 +00:00
|
|
|
|
|
|
|
# Install equalizer
|
|
|
|
source "../../../scripts/Common/Config/EasyEffects/SurfaceBook2/install.sh";
|
|
|
|
|
|
|
|
source "../../../scripts/PopOS/Scripts/postinstall.sh";
|
|
|
|
popd > /dev/null;
|