2023-01-23 16:22:39 +00:00
|
|
|
#!/bin/bash
|
2023-03-16 19:14:49 +00:00
|
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
2023-01-23 16:22:39 +00:00
|
|
|
|
|
|
|
# Set Hostname
|
|
|
|
sudo hostnamectl set-hostname ManuPopOSLive;
|
2023-03-16 19:06:14 +00:00
|
|
|
source "../../scripts/Scripts/prepare.sh";
|
|
|
|
source "../../scripts/OS/PopOS/install.sh";
|
|
|
|
source "../../scripts/Software/Collections/personal.sh";
|
|
|
|
source "../../scripts/Config/UserProfile/personal.sh";
|
2023-01-23 19:32:33 +00:00
|
|
|
|
2023-03-16 19:06:14 +00:00
|
|
|
source "../../scripts/Scripts/postinstall.sh";
|
2023-03-16 19:14:49 +00:00
|
|
|
popd > /dev/null;
|