From ddba8939e636ecb5a92d0e36bf1af4d680e360d8 Mon Sep 17 00:00:00 2001 From: Djan GICQUEL <> Date: Wed, 10 Mar 2021 19:56:52 +0100 Subject: [PATCH] masquage des collonnes au premier menu --- borg-gui.sh | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/borg-gui.sh b/borg-gui.sh index e33005b..40c72e4 100755 --- a/borg-gui.sh +++ b/borg-gui.sh @@ -70,8 +70,8 @@ if [ ! $1 = "" ]; then fichierprofil="$1" . "$1" else - cd $HOME/.config/borg/ - fichierprofil=$(ls -1 *.txt | zenity --height=500 --width=400 --list --title "Profils" --column "profil") && . $fichierprofil + cd $dossierprofil + fichierprofil=$(ls -1 *.txt | zenity --height=500 --width=400 --list --title "Profils" --hide-header --column "profil") && . $fichierprofil fi if [ "$nomsauvegarde" = "" ]; then @@ -118,7 +118,7 @@ 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 borg mount $borg_repo::$borg_archive $HOME/$borg_archive - zenity --width=400 --info --text="La sauvegarde est disponible dans le dossier\n$HOME/$borg_archive" + zenity --width=400 --info --text="La sauvegarde est disponible dans le dossier\n$HOME/$borg_archive" elif [ "$choixmenu" = "dm" ];then ptnmontage=$(mount | grep borgfs | cut -d" " -f3 | zenity --width=500 --height=400 --list --title "Liste des points de montages" --column "") @@ -133,16 +133,13 @@ elif [ "$choixmenu" = "ss" ];then elif [ "$choixmenu" = "is" ];then borg_archive=$(borg list --short $borg_repo | zenity --height=500 --list --title "Listes des archives" --column "Archive") - info=$(borg info $borg_repo::$borg_archive) - zenity --width=600 --info --text="$info" + zenity --width=600 --info --text="$(borg info $borg_repo::$borg_archive)" elif [ "$choixmenu" = "id" ];then - info=$(borg info $borg_repo) - zenity --width=600 --info --text="$info" + zenity --width=600 --info --text="$(borg info $borg_repo)" elif [ "$choixmenu" = "ap" ];then - info=$(cd $dossierprofil && cat $fichierprofil) - zenity --width=600 --height=400 --info --text="$info" + zenity --width=600 --height=400 --info --text="$(cd $dossierprofil && cat $fichierprofil)" elif [ "$choixmenu" = "" ];then zenity --width=500 --info --text="Aucun choix, retour au menu."