2023-01-23 16:19:55 +00:00
|
|
|
#!/bin/bash
|
|
|
|
dir="${BASH_SOURCE%/*}";
|
2023-03-16 19:14:49 +00:00
|
|
|
pushd "$dir" > /dev/null;
|
2023-01-23 16:19:55 +00:00
|
|
|
scriptRoot="$dir/../..";
|
|
|
|
softwareRoot="$scriptRoot/Software";
|
|
|
|
configRoot="$scriptRoot/Config";
|
2023-03-16 18:54:53 +00:00
|
|
|
cloudRoot="$configRoot/rclone";
|
2023-01-23 16:19:55 +00:00
|
|
|
|
|
|
|
# Sync clouds
|
|
|
|
{
|
2023-03-16 19:14:49 +00:00
|
|
|
pushd "$dir" > /dev/null;
|
2023-03-16 19:06:14 +00:00
|
|
|
gnome-terminal --tab --wait -- /bin/bash "../../Config/rclone/InstallSync.sh" nextcloud Nextcloud;
|
2023-01-23 16:19:55 +00:00
|
|
|
|
|
|
|
# Install fonts
|
2023-03-16 19:06:14 +00:00
|
|
|
source "../../Config/Fonts/NerdFont/install.sh";
|
|
|
|
source "../../Software/Oh My Posh/install.sh";
|
2023-03-16 19:14:49 +00:00
|
|
|
popd > /dev/null;
|
2023-01-23 16:19:55 +00:00
|
|
|
} &
|
|
|
|
|
|
|
|
# Microsoft Windows Fonts
|
2023-03-16 19:06:14 +00:00
|
|
|
source "../../Config/Fonts/MicrosoftFonts/install.sh";
|
2023-01-23 16:19:55 +00:00
|
|
|
|
|
|
|
# Git Config
|
2023-03-16 19:06:14 +00:00
|
|
|
source "../../Config/git/setup/install.sh";
|
2023-01-23 16:19:55 +00:00
|
|
|
|
|
|
|
# Troll Stuff
|
2023-03-16 19:06:14 +00:00
|
|
|
source "../../Config/git/git-auf-deutsch/install.sh";
|
2023-03-16 19:14:49 +00:00
|
|
|
popd > /dev/null;
|