diff --git a/install.sh b/install.sh index cabff0a..b8e2c55 100644 --- a/install.sh +++ b/install.sh @@ -32,13 +32,30 @@ export LIBVIRT_DEFAULT_URI='qemu:///system' virsh net-start default virsh net-autostart default -# Installation des logiciels en fonction du profil d'utilisation (décommenter selon le besoin) -apt install -y blender -apt install -y geany geany-plugin-addons geany-plugin-git-changebar geany-plugin-overview geany-plugin-spellcheck geany-plugin-treebrowser geany-plugin-vimode -apt install -y gimp gimp-data-extras gimp-help-fr -apt install -y hugin -apt install -y kdenlive -apt install -y obs-studio +# Installation des paquets wibian-extras +packages=( + blender + caja-nextcloud + geany + geany-plugin-addons + geany-plugin-git-changebar + geany-plugin-overview + geany-plugin-spellcheck + geany-plugin-treebrowser + geany-plugin-vimode + gimp + gimp-data-extras + gimp-help-fr + hugin + kdenlive + obs-studio + zim +) + +for package in "${packages[@]}"; do + echo "Installation de $package..." + apt install -y $package +done # Logiciel hors dépôts : Synology Drive Client latest_version_url=$(curl -sL "https://archive.synology.com/download/Utility/SynologyDriveClient/" \