diff --git a/post-install-linux-mint.sh b/post-install-linux-mint.sh new file mode 100755 index 0000000..074d688 --- /dev/null +++ b/post-install-linux-mint.sh @@ -0,0 +1,22 @@ +#! /bin/bash +# post-install-linus-mint.sh +# by Djan GICQUEL +# Licence : CC SA-NC + +if [ $(whoami) = "root" ];then +cat << "EOF" > /etc/apt/sources.list.d/official-package-repositories.list +deb http://mirror6.layerjet.com/linuxmint/packages uma main upstream import backport + +deb http://miroir.univ-lorraine.fr/ubuntu focal main restricted universe multiverse +deb http://miroir.univ-lorraine.fr/ubuntu focal-updates main restricted universe multiverse +deb http://miroir.univ-lorraine.fr/ubuntu focal-backports main restricted universe multiverse + +deb http://security.ubuntu.com/ubuntu/ focal-security main restricted universe multiverse +deb http://archive.canonical.com/ubuntu/ focal partner +EOF + +apt-get -y remove --purge timeshift warpinator hexchat rhythmbox* hypnotix celluloid +apt-get -y install vlc gimp firefox-locale-fr +else +echo "Executer ce script en root." +fi