These are some non-secret scripts/configs I use locally to develop. Since I tend to break things, or redo my local setup I place them in version control
I highly recommend not running other people commands blindly on your machine. So I don't expect others to do the same with mine. Which is why the only documentation included; is meant for myself.
Add the following to your .bashrc
# Jor bin in PATH
export PATH="$HOME/Projects/Scripts/bin:$PATH"
# Jor .profile
for f in $HOME/Projects/Scripts/profile/*; do
. "$f"
done
# Jor aliasses
for f in $HOME/Projects/Scripts/aliasses/*; do
. "$f"
done
mkdir -p ~/.ssh
cp config/ssh/config ~/.ssh/config
chmod 600 ~/.ssh/config