Move the PopOS install script

This commit is contained in:
Manuel Thalmann 2023-04-17 10:28:11 +02:00
parent f12c6bc28a
commit d356603840
2 changed files with 16 additions and 16 deletions

View file

@ -0,0 +1,16 @@
#!/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";
source "../../../scripts/Debian/Devices/SurfaceBook2/Setup/install.sh";
source "../../../scripts/PopOS/Software/Collections/school.sh";
INSTALL_FONTS=1 NEXTCLOUD_DIR="Nextcloud" source "../../../scripts/Common/Config/UserProfile/install.sh";
# Install equalizer
source "../../../scripts/Common/Config/EasyEffects/SurfaceBook2/install.sh";
source "../../../scripts/PopOS/Scripts/postinstall.sh";
popd > /dev/null;

View file

@ -1,16 +0,0 @@
#!/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";
source "../../scripts/Debian/Devices/SurfaceBook2/Setup/install.sh";
source "../../scripts/PopOS/Software/Collections/school.sh";
INSTALL_FONTS=1 NEXTCLOUD_DIR="Nextcloud" source "../../scripts/Common/Config/UserProfile/install.sh";
# Install equalizer
source "../../scripts/Common/Config/EasyEffects/SurfaceBook2/install.sh";
source "../../scripts/PopOS/Scripts/postinstall.sh";
popd > /dev/null;