Tyleo-Scripts/irp-addons

19 lines
595 B
Text
Raw Permalink Normal View History

2024-02-18 18:06:30 +00:00
#!/usr/bin/env bash
read -p "Installer les Alias de Tyleo (fichier sh dans profile.d) ?[O-Y/n]" ia
case $ia in
[OoYy] ) curl https://s.tyleodev.fr/irp-alias | sudo bash
esac
read -p "Installer Oh-My-ZSH ?[O-Y/n]" ozh
case $ozh in
[OoYy] ) curl https://s.tyleodev.fr/irp-ozh | sudo bash
esac
read -p "Installer Me, un petit script d'identité numérique créé par Tyleo ? (Ce n'est pas un virus, promis juré! [O-Y/n]" me
case $me in
[OoYy] ) sudo rm -f /bin/me
sudo wget https://s.tyleodev.fr/scr/me -O /bin/me
sudo chmod +x /bin/me
me
esac