ajout de l'entrée de menu «Renommer une archive»
This commit is contained in:
parent
8ff28bd0a2
commit
4c84393971
12
borg-gui.sh
12
borg-gui.sh
@ -150,6 +150,7 @@ ms\nMonter une archive\n\
|
|||||||
$(echo $MenuDemonter)\
|
$(echo $MenuDemonter)\
|
||||||
ss\nSupprimer une archive\n\
|
ss\nSupprimer une archive\n\
|
||||||
sss\nSupprimer des archives\n\
|
sss\nSupprimer des archives\n\
|
||||||
|
ra\nRenommer une archive\n\
|
||||||
is\nInformation archive\n\
|
is\nInformation archive\n\
|
||||||
fi\nFiltre : "$filter"\n\
|
fi\nFiltre : "$filter"\n\
|
||||||
--\n------------------------------------------\n\
|
--\n------------------------------------------\n\
|
||||||
@ -257,6 +258,17 @@ fi
|
|||||||
zenity $W --info --text="Suppression des archives terminée.\nArchives supprimées : $(echo "$Borg_Archive" | sed s/\|/\ /g)"
|
zenity $W --info --text="Suppression des archives terminée.\nArchives supprimées : $(echo "$Borg_Archive" | sed s/\|/\ /g)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
elif [ "$choixmenu" = "ra" ];then
|
||||||
|
# renommer une archive
|
||||||
|
BorgFilter
|
||||||
|
|
||||||
|
if [ "$Borg_Archive" = "" ];then
|
||||||
|
zenity $W --info --text "Aucune archive choisie, retour au menu"
|
||||||
|
else
|
||||||
|
borg_nouveaunom=$(zenity --entry --text "Nouveau nom" --entry-text="$Borg_Archive")
|
||||||
|
borg rename $borg_repo::"$Borg_Archive" "$borg_nouveaunom" | ZenityPulsate
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
elif [ "$choixmenu" = "is" ];then
|
elif [ "$choixmenu" = "is" ];then
|
||||||
# Information archive
|
# Information archive
|
||||||
|
Loading…
Reference in New Issue
Block a user