13 lines
481 B
Bash
13 lines
481 B
Bash
|
#!/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;
|