Projet

Général

Profil

Grégoire Dorin » install_v0_2.sh

seconde version d'install - Grégoire DORIN, 02/03/2023 15:53

 
#!/bin/bash

apt update

dpkg -s curl
if [ $? -ne 0 ]
then
apt install curl
fi

dpkg -s git
if [ $? -ne 0 ]
then
apt install git
fi

dpkg -s zsh
if [ $? -ne 0 ]
then
apt install zsh
chsh -s /bin/zsh root
fi

#redémarrer le PC après cette commande

#pour avoir le bon $USER il faut faire la
#commande sudo -u <user>
echo $USER
chsh -s /bin/zsh $USER

ls $HOME/.oh-my-zsh
if [ $? -ne 0 ]
then
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
\n
fi

ls $HOME/.zshrc
if [ $? -eq 0 ]
then
sed -i "s/ZSH_THEME=\"robbyrussell\"/ZSH_THEME=\"ys\"/" $HOME/.zshrc
fi
(6-6/7)