Mise à jour de 'script.sh'
Ajout de l'installation du paquet PIP et du module tabulate
This commit is contained in:
parent
3aab03b2de
commit
d2e2e268f8
25
script.sh
25
script.sh
@ -7,16 +7,17 @@ NC='\033[0m' # No Color
|
|||||||
|
|
||||||
# Packages list
|
# Packages list
|
||||||
packages=(
|
packages=(
|
||||||
"zsh" # Better than bash
|
"zsh" # Better than bash
|
||||||
"micro" # Better than nano
|
"micro" # Better than nano
|
||||||
"exa" # Better than ls
|
"exa" # Better than ls
|
||||||
"bat" # Better than cat
|
"bat" # Better than cat
|
||||||
"btop" # Betther than top
|
"btop" # Betther than top
|
||||||
"ncdu" # Better than du -h
|
"ncdu" # Better than du -h
|
||||||
"duf" # Better than df -h
|
"duf" # Better than df -h
|
||||||
"neofetch" # Because it's cool
|
"neofetch" # Because it's cool
|
||||||
"git" # Because git
|
"git" # Because git
|
||||||
"fuck" # Fuck error
|
"fuck" # Fuck error
|
||||||
|
"python3-pip" # PIP
|
||||||
)
|
)
|
||||||
|
|
||||||
# Packages installation
|
# Packages installation
|
||||||
@ -33,6 +34,10 @@ for package in "${packages[@]}"; do
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# Installation module tabulate
|
||||||
|
echo "Installation module tabulate via pip"
|
||||||
|
pip install tabulate
|
||||||
|
|
||||||
# Git Installation
|
# Git Installation
|
||||||
mkdir ~/.zsh
|
mkdir ~/.zsh
|
||||||
if [ ! -d ~/.zsh ]; then
|
if [ ! -d ~/.zsh ]; then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user