From b7b96b693d8bf45ca8dd7b41701287884a5473ba Mon Sep 17 00:00:00 2001 From: Djan GICQUEL <> Date: Fri, 19 Mar 2021 20:08:27 +0100 Subject: [PATCH] =?UTF-8?q?ajout=20du=20menu=20=C2=ABespace=20disque=20uti?= =?UTF-8?q?lis=C3=A9=C2=BB=20ajout=20d'une=20notification=20=C2=ABespace?= =?UTF-8?q?=20disque=20utilis=C3=A9=C2=BB=20lors=20d'un=20lancement=20d'un?= =?UTF-8?q?e=20sauvegarde?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- borg-gui.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/borg-gui.sh b/borg-gui.sh index 09cf3da..b486f1c 100755 --- a/borg-gui.sh +++ b/borg-gui.sh @@ -56,6 +56,9 @@ SauvegardeBorg () { zenity --width=600 --height=500 --info --text="$(cd $dossierprofil && cat $fichierprofil)" + espacedisqueutil=$(df -k --output=pcent $borg_repo | tail -n +2) + zenity --width=600 --notification --text "Espace disque utilisé\n\n $espacedisqueutil" + borg create $borg_excludes $borg_compress $borg_repo::$borg_archive $borg_dir | zenity --width=600 --progress --pulsate --auto-close --title="Sauvegarde en cours..." sync | zenity --width=600 --progress --pulsate --auto-close --title="Synchronisation des écritures..." zenity --notification --text "Sauvegarde $nomsauvegarde terminée" @@ -104,6 +107,7 @@ ss\nSupprimmer une archive\n\ is\nInformation archive\n\ id\nInformation sur le dépôt\n\ ap\nAfficher le profil\n\ +ed\nEspace disque utilisé\n\ qu\nQuitter\ " | zenity --list \ --height=400 --width=400 \ @@ -114,6 +118,10 @@ if [ "$choixmenu" = "cs" ] ;then TestBorgRepo SauvegardeBorg +elif [ "$choixmenu" = "ed" ] ;then + espacedisqueutil=$(df -k --output=pcent $borg_repo | tail -n +2) + zenity --width=600 --info --text "Espace disque utilisé\n\n $espacedisqueutil" + elif [ "$choixmenu" = "ms" ];then borg_archive=$(borg list --short $borg_repo | zenity --height=500 --list --title "Listes des archives" --column "Archive") mkdir $HOME/$borg_archive