2023-01-23 13:19:26 +00:00
|
|
|
#!/bin/bash
|
2023-03-16 19:14:49 +00:00
|
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
2023-01-23 13:19:26 +00:00
|
|
|
# Set Hostname
|
2023-01-23 14:55:10 +00:00
|
|
|
sudo hostnamectl set-hostname ManuSurface;
|
2023-03-16 19:06:14 +00:00
|
|
|
|
|
|
|
source "../../scripts/Scripts/prepare.sh";
|
|
|
|
source "../../scripts/OS/PopOS/install.sh";
|
|
|
|
source "../../scripts/Devices/SurfaceBook2/Setup/install.sh";
|
|
|
|
source "../../scripts/Software/Collections/school.sh";
|
|
|
|
source "../../scripts/Config/UserProfile/school.sh";
|
2023-01-23 13:19:26 +00:00
|
|
|
|
|
|
|
# Install equalizer
|
2023-03-16 19:06:14 +00:00
|
|
|
source "../../scripts/Config/EasyEffects/SurfaceBook2/install.sh";
|
2023-01-23 19:32:33 +00:00
|
|
|
|
2023-03-16 19:06:14 +00:00
|
|
|
source "../../scripts/Scripts/postinstall.sh";
|
2023-03-16 19:14:49 +00:00
|
|
|
popd > /dev/null;
|