PortValhalla/scripts/Common/Config/UserProfile/install.sh

27 lines
652 B
Bash
Raw Normal View History

#!/bin/bash
2023-05-03 19:55:25 +00:00
NEXTCLOUD_DIR="${NEXTCLOUD_DIR:-Nextcloud}";
2023-04-01 13:39:29 +00:00
INSTALL_FONTS="${INSTALL_FONTS}";
dir="${BASH_SOURCE%/*}";
pushd "$dir" > /dev/null;
. "../../Scripts/is-truthy.sh";
if isTruthy "$INSTALL_FONTS"
2023-04-05 09:00:26 +00:00
then
# Microsoft Windows Fonts
source "../Fonts/MicrosoftFonts/install.sh";
fi;
# Sync clouds
2023-05-03 16:34:30 +00:00
NEXTCLOUD_DIR="${NEXTCLOUD_DIR}" . "../rclone/InstallSync.sh" nextcloud "$NEXTCLOUD_DIR";
if isTruthy "$INSTALL_FONTS"
2023-04-05 09:03:05 +00:00
then
# Install fonts
2023-05-03 16:34:30 +00:00
NEXTCLOUD_DIR="${NEXTCLOUD_DIR}" source "../Fonts/NerdFont/install.sh";
2023-04-05 09:03:05 +00:00
fi;
2023-04-01 13:39:29 +00:00
2023-04-05 09:03:05 +00:00
source "../bash/oh-my-posh.sh";
2023-05-03 16:34:30 +00:00
NEXTCLOUD_DIR="${NEXTCLOUD_DIR}" source "../Oh My Posh/install.sh";
popd > /dev/null;