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