PortValhalla/scripts/Config/UserProfile/personal.sh

29 lines
718 B
Bash
Raw Normal View History

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