28 lines
420 B
Bash
Executable File
28 lines
420 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Disable running as root.
|
|
if [[ "$EUID" -eq 0 ]]; then
|
|
echo "Please do not run as root"
|
|
exit 1
|
|
fi
|
|
|
|
# Grant SH execute
|
|
chmod +x ./**/*.sh
|
|
|
|
# Arch Linux Setup
|
|
if [ -f "/etc/arch-release" ]; then
|
|
./scripts/install-arch.sh
|
|
fi
|
|
|
|
# Debian set up
|
|
if [ -f "/etc/debian_version" ]; then
|
|
./scripts/install-debian.sh
|
|
fi
|
|
|
|
# Node JS
|
|
./scripts/install-node.sh
|
|
source ~/.nvm/nvm.sh
|
|
|
|
# VIM
|
|
./scripts/install-vim.sh
|