28 lines
718 B
Bash
Executable file
28 lines
718 B
Bash
Executable file
#!/bin/bash
|
|
dir="${BASH_SOURCE%/*}";
|
|
pushd "$dir" > /dev/null;
|
|
scriptRoot="$dir/../..";
|
|
softwareRoot="$scriptRoot/Software";
|
|
configRoot="$scriptRoot/Config";
|
|
cloudRoot="$configRoot/rclone";
|
|
|
|
# Sync clouds
|
|
{
|
|
pushd "$dir" > /dev/null;
|
|
gnome-terminal --tab --wait -- /bin/bash "../../Config/rclone/InstallSync.sh" nextcloud Nextcloud;
|
|
|
|
# Install fonts
|
|
source "../../Config/Fonts/NerdFont/install.sh";
|
|
source "../../Software/Oh My Posh/install.sh";
|
|
popd > /dev/null;
|
|
} &
|
|
|
|
# Microsoft Windows Fonts
|
|
source "../../Config/Fonts/MicrosoftFonts/install.sh";
|
|
|
|
# Git Config
|
|
source "../../Config/git/setup/install.sh";
|
|
|
|
# Troll Stuff
|
|
source "../../Config/git/git-auf-deutsch/install.sh";
|
|
popd > /dev/null;
|