ajout du menu «Modifier un profil»
This commit is contained in:
parent
2b35ce5797
commit
ef5e46fa3a
@ -34,7 +34,8 @@ mkdir -p "$dossierprofil" && cd "$dossierprofil" || exit
|
|||||||
choixmenu=$(echo -e "\
|
choixmenu=$(echo -e "\
|
||||||
cp\nCréer un nouveau profil/dépôt\n\
|
cp\nCréer un nouveau profil/dépôt\n\
|
||||||
ajd\nCréer un nouveau profil et le lier à un dépôt existant\n\
|
ajd\nCréer un nouveau profil et le lier à un dépôt existant\n\
|
||||||
ap\nAfficher les profils\
|
ap\nAfficher les profils\n\
|
||||||
|
mp\nModifier un profil (connaissance en ligne de commande borg requise)\
|
||||||
" | zenity $H $W --window-icon=borg --list --column "id" --column "choix" --hide-column=1 --hide-header)
|
" | zenity $H $W --window-icon=borg --list --column "id" --column "choix" --hide-column=1 --hide-header)
|
||||||
|
|
||||||
# Gestion des choix du menu
|
# Gestion des choix du menu
|
||||||
@ -132,6 +133,11 @@ if [ "$fichierprofil" != "" ];then
|
|||||||
zenity $W $H --info --text="<tt>$(cd "$dossierprofil" && cat "$fichierprofil")</tt>"
|
zenity $W $H --info --text="<tt>$(cd "$dossierprofil" && cat "$fichierprofil")</tt>"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
elif [ "$choixmenu" = "mp" ];then
|
||||||
|
fichierprofil=$(ls -1 *.conf | zenity $H $W --window-icon=borg --list --title "Liste des profils" --text "Choisir un profil dans la liste" --hide-header --column "profil")
|
||||||
|
zenity $W $H --text-info --editable --title="profil $fichierprofil" --filename "$fichierprofil" > "$dossierprofil"/"$fichierprofil".tmp
|
||||||
|
mv "$dossierprofil"/"$fichierprofil".tmp "$dossierprofil"/"$fichierprofil"
|
||||||
|
|
||||||
elif [ "$choixmenu" = "" ];then
|
elif [ "$choixmenu" = "" ];then
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user