2023-01-23 16:19:55 +00:00
|
|
|
#!/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}";
|
2023-01-23 16:19:55 +00:00
|
|
|
dir="${BASH_SOURCE%/*}";
|
2023-03-16 19:14:49 +00:00
|
|
|
pushd "$dir" > /dev/null;
|
2023-05-04 17:51:05 +00:00
|
|
|
. "../../Scripts/is-truthy.sh";
|
2023-01-23 16:19:55 +00:00
|
|
|
|
2023-05-04 17:51:05 +00:00
|
|
|
if isTruthy "$INSTALL_FONTS"
|
2023-04-05 09:00:26 +00:00
|
|
|
then
|
|
|
|
# Microsoft Windows Fonts
|
|
|
|
source "../Fonts/MicrosoftFonts/install.sh";
|
|
|
|
fi;
|
|
|
|
|
2023-01-23 16:19:55 +00:00
|
|
|
# Sync clouds
|
2023-05-03 16:34:30 +00:00
|
|
|
NEXTCLOUD_DIR="${NEXTCLOUD_DIR}" . "../rclone/InstallSync.sh" nextcloud "$NEXTCLOUD_DIR";
|
2023-01-23 16:19:55 +00:00
|
|
|
|
2023-05-04 17:51:05 +00:00
|
|
|
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-27 21:48:32 +00:00
|
|
|
source "../fish/oh-my-posh.sh";
|
2023-05-03 16:34:30 +00:00
|
|
|
NEXTCLOUD_DIR="${NEXTCLOUD_DIR}" source "../Oh My Posh/install.sh";
|
2023-01-23 16:19:55 +00:00
|
|
|
|
2023-03-16 19:14:49 +00:00
|
|
|
popd > /dev/null;
|