PortValhalla/profiles/PopOSLive/setup.sh

13 lines
353 B
Bash
Raw Normal View History

2023-01-23 16:22:39 +00:00
#!/bin/bash
2023-03-16 19:06:14 +00:00
pushd "${BASH_SOURCE%/*}";
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";
popd;