diff --git a/scripts/Common/Config/UserProfile/personal.sh b/scripts/Common/Config/UserProfile/personal.sh index cdcbd5cf..c81ee15e 100755 --- a/scripts/Common/Config/UserProfile/personal.sh +++ b/scripts/Common/Config/UserProfile/personal.sh @@ -4,10 +4,16 @@ INSTALL_FONTS="${INSTALL_FONTS}"; dir="${BASH_SOURCE%/*}"; pushd "$dir" > /dev/null; +if [ ! -z "$INSTALL_FONTS" ] +then + # Microsoft Windows Fonts + source "../Fonts/MicrosoftFonts/install.sh"; +fi; + # Sync clouds { pushd "$dir" > /dev/null; - gnome-terminal --tab --wait -- /bin/bash "../rclone/InstallSync.sh" nextcloud "$NEXTCLOUD_DIR"; + . "../rclone/InstallSync.sh" nextcloud "$NEXTCLOUD_DIR"; if [ ! -z "$INSTALL_FONTS" ] then @@ -20,10 +26,4 @@ pushd "$dir" > /dev/null; popd > /dev/null; } & -if [ ! -z "$INSTALL_FONTS" ] -then - # Microsoft Windows Fonts - source "../Fonts/MicrosoftFonts/install.sh"; -fi; - popd > /dev/null;