24 lines
566 B
Bash
24 lines
566 B
Bash
|
#!/bin/bash
|
||
|
dir="${BASH_SOURCE%/*}";
|
||
|
scriptRoot="$dir/../..";
|
||
|
softwareRoot="$scriptRoot/Software";
|
||
|
configRoot="$scriptRoot/Config";
|
||
|
|
||
|
# Sync clouds
|
||
|
{
|
||
|
gnome-terminal --tab --wait -- /bin/bash "$cloudRoot/NextcloudSync/install.sh";
|
||
|
|
||
|
# Install fonts
|
||
|
source "$configRoot/Fonts/NerdFont/install.sh";
|
||
|
source "$softwareRoot/Oh My Posh/install.sh";
|
||
|
} &
|
||
|
|
||
|
# Microsoft Windows Fonts
|
||
|
source "$configRoot/Fonts/MicrosoftFonts/install.sh";
|
||
|
|
||
|
# Git Config
|
||
|
source "$configRoot/git/setup/install.sh";
|
||
|
|
||
|
# Troll Stuff
|
||
|
source "$configRoot/git/git-auf-deutsch/install.sh";
|