#!/bin/bash
SIZE=`zenity --scale --text "Pourcetage de réduction :" --value=50 --min-value=5 --max-value=100 --step=1`;
QUALITY=`zenity --scale --text "Pourcentage de conpression JPEG :" --value=85 --min-value=5 --max-value=100 --step=1`;
for i in *.JPG
do
convert -strip -interlace Plane -quality $QUALITY -resize $SIZE% "$i" "$i";
done
for i in *.jpg
do
convert -strip -interlace Plane -quality $QUALITY -resize $SIZE% "$i" "$i";
done
notify-send --icon="info" "Toutes les conversion sont terminée !" ":-)";