13 lines
451 B
Bash
Executable file
13 lines
451 B
Bash
Executable file
#!/bin/bash
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
# Set Hostname
|
|
sudo hostnamectl set-hostname ManuPopOSLive;
|
|
source "../../scripts/PopOS/Scripts/prepare.sh";
|
|
source "../../scripts/PopOS/OS/install.sh";
|
|
source "../../scripts/PopOS/Software/Collections/personal.sh";
|
|
INSTALL_FONTS=1 NEXTCLOUD_DIR="${NEXTCLOUD_DIR}" source "../../scripts/Common/Config/UserProfile/personal.sh";
|
|
|
|
source "../../scripts/PopOS/Scripts/postinstall.sh";
|
|
popd > /dev/null;
|