16 lines
521 B
Bash
Executable file
16 lines
521 B
Bash
Executable file
#!/bin/bash
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
# Set Hostname
|
|
sudo hostnamectl set-hostname ManuSurface;
|
|
|
|
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";
|
|
|
|
# Install equalizer
|
|
source "../../scripts/Config/EasyEffects/SurfaceBook2/install.sh";
|
|
|
|
source "../../scripts/Scripts/postinstall.sh";
|
|
popd > /dev/null;
|