Added iftop, and setting term so it looks nice.

This commit is contained in:
2019-11-19 10:34:35 -05:00
parent 74e2795bc5
commit 28598d145c
2 changed files with 23 additions and 2 deletions
+21
View File
@@ -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
+2 -2
View File
@@ -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