From 76a4b067276feb0345f4ad5cc3b9d24e3cbc6eb5 Mon Sep 17 00:00:00 2001 From: Djan GICQUEL <> Date: Thu, 13 Oct 2022 18:02:49 +0200 Subject: [PATCH] =?UTF-8?q?ajout=20de=20l'espace=20disque=20utilis=C3=A9?= =?UTF-8?q?=20dans=20notification?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- borg-gui.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/borg-gui.sh b/borg-gui.sh index ad0abe9..a35b75c 100755 --- a/borg-gui.sh +++ b/borg-gui.sh @@ -143,7 +143,7 @@ fi # notification si espace disque faible NotificationEspaceDisque () { if [ $EspaceDisqueUtil -gt $seuil_alerte_espace_disque ];then - zenity --window-icon warning --notification --text="borg-zenity\nEspace disque faible" + zenity --window-icon warning --notification --text="borg-zenity\nEspace disque faible, $EspaceDisqueUtil% occupé" fi }