diff --git a/profiles/ManuSurface/setup.sh b/profiles/ManuSurface/setup.sh index 7de8e64d..a1842ae1 100755 --- a/profiles/ManuSurface/setup.sh +++ b/profiles/ManuSurface/setup.sh @@ -17,3 +17,5 @@ source "$configRoot/UserProfile/school.sh"; # Install equalizer source "$configRoot/EasyEffects/SurfaceBook2/install.sh"; + +source "$utilRoot/postinstall.sh"; diff --git a/profiles/PopOSLive/setup.sh b/profiles/PopOSLive/setup.sh index 76ee924e..ab22c875 100755 --- a/profiles/PopOSLive/setup.sh +++ b/profiles/PopOSLive/setup.sh @@ -13,3 +13,5 @@ source "$utilRoot/prepare.sh"; source "$osRoot/PopOS/install.sh"; source "$softwareRoot/Collections/personal.sh"; source "$configRoot/UserProfile/personal.sh"; + +source "$utilRoot/postinstall.sh"; diff --git a/scripts/Scripts/postinstall.sh b/scripts/Scripts/postinstall.sh new file mode 100644 index 00000000..91c2f96b --- /dev/null +++ b/scripts/Scripts/postinstall.sh @@ -0,0 +1,3 @@ +#!/bin/bash +sudo systemctl start packagekit; + diff --git a/scripts/Scripts/prepare.sh b/scripts/Scripts/prepare.sh index e8321617..466c13aa 100755 --- a/scripts/Scripts/prepare.sh +++ b/scripts/Scripts/prepare.sh @@ -1,4 +1,5 @@ #!/bin/bash -sudo apt update +sudo systemctl stop packagekit; +sudo apt update; sudo apt upgrade -y; sudo apt install dbus-x11;