Added iftop, and setting term so it looks nice.
This commit is contained in:
@@ -34,6 +34,27 @@ esac
|
||||
|
||||
# ----------------------------------------------------------
|
||||
|
||||
echo "----- Append default TERM to ~/.bashrc --------------"
|
||||
read -p 'Add "export TERM=screen-256color"? [y/N]: ' add_term
|
||||
case $add_term in
|
||||
[Yy]* )
|
||||
echo 'Appending ~/.bashrc'
|
||||
(
|
||||
cat << 'TERM'
|
||||
|
||||
# ABS set term to something reasonable
|
||||
export TERM=screen-256color
|
||||
|
||||
TERM
|
||||
) >> "$HOME/.bashrc"
|
||||
;;
|
||||
* )
|
||||
echo 'Skipping'
|
||||
;;
|
||||
esac
|
||||
|
||||
# ----------------------------------------------------------
|
||||
|
||||
echo "----- Install vim configuration ---------------------"
|
||||
read -p 'Setup vim, colors, defaults, etc? [y/N]: ' set_vim
|
||||
case $set_vim in
|
||||
|
||||
@@ -52,8 +52,8 @@ function install_collection () {
|
||||
|
||||
# ----------------------------------------------------------
|
||||
|
||||
echo "----- Install extra utilities: ncdu, zip ------------"
|
||||
install_collection 'extra utilities' ncdu zip unzip
|
||||
echo "----- Install extra utilities: ncdu, zip, iftop -----"
|
||||
install_collection 'extra utilities' ncdu zip unzip iftop
|
||||
|
||||
echo "----- Install nginx + php-fpm + certbot -------------"
|
||||
install_collection 'nginx, php-fpm, certbot' nginx certbot python-certbot-nginx php-cli php-fpm php-curl php-gd php-imagick php-intl php-json php-mbstring php-mysql php-redis php-soap php-xml php-yaml php-zip
|
||||
|
||||
Reference in New Issue
Block a user