fixed home folder copy destination
This commit is contained in:
parent
ab92587f6c
commit
e5fb5c7d0e
1 changed files with 14 additions and 14 deletions
|
@ -39,22 +39,22 @@ if [[ $user_choice = *"BACKUP All of My Data and Settings"* ]]; then
|
||||||
# GNOME SECTION
|
# GNOME SECTION
|
||||||
dconf dump / > $FOLDER/$USER-ui
|
dconf dump / > $FOLDER/$USER-ui
|
||||||
# HU lang
|
# HU lang
|
||||||
rsync -ap --info=progress2 --relative /home/$USER/Asztal/ $FOLDER/
|
rsync -ap --info=progress2 /home/$USER/Asztal/ $FOLDER/
|
||||||
rsync -ap --info=progress2 --relative /home/$USER/Dokumentumok/ $FOLDER/
|
rsync -ap --info=progress2 /home/$USER/Dokumentumok/ $FOLDER/
|
||||||
rsync -ap --info=progress2 --relative /home/$USER/Letöltések/ $FOLDER/
|
rsync -ap --info=progress2 /home/$USER/Letöltések/ $FOLDER/
|
||||||
rsync -ap --info=progress2 --relative /home/$USER/Zenék/ $FOLDER/
|
rsync -ap --info=progress2 /home/$USER/Zenék/ $FOLDER/
|
||||||
rsync -ap --info=progress2 --relative /home/$USER/Képek/ $FOLDER/
|
rsync -ap --info=progress2 /home/$USER/Képek/ $FOLDER/
|
||||||
rsync -ap --info=progress2 --relative /home/$USER/Videók/ $FOLDER/
|
rsync -ap --info=progress2 /home/$USER/Videók/ $FOLDER/
|
||||||
# EN lang
|
# EN lang
|
||||||
rsync -ap --info=progress2 --relative /home/$USER/Desktop/ $FOLDER/
|
rsync -ap --info=progress2 /home/$USER/Desktop/ $FOLDER/
|
||||||
rsync -ap --info=progress2 --relative /home/$USER/Documents/ $FOLDER/
|
rsync -ap --info=progress2 /home/$USER/Documents/ $FOLDER/
|
||||||
rsync -ap --info=progress2 --relative /home/$USER/Downloads/ $FOLDER/
|
rsync -ap --info=progress2 /home/$USER/Downloads/ $FOLDER/
|
||||||
rsync -ap --info=progress2 --relative /home/$USER/Music/ $FOLDER/
|
rsync -ap --info=progress2 /home/$USER/Music/ $FOLDER/
|
||||||
rsync -ap --info=progress2 --relative /home/$USER/Pictures/ $FOLDER/
|
rsync -ap --info=progress2 /home/$USER/Pictures/ $FOLDER/
|
||||||
rsync -ap --info=progress2 --relative /home/$USER/Videos/ $FOLDER/
|
rsync -ap --info=progress2 /home/$USER/Videos/ $FOLDER/
|
||||||
|
|
||||||
rsync -ap --info=progress2 --relative /home/$USER/Games/ $FOLDER/
|
rsync -ap --info=progress2 /home/$USER/Games/ $FOLDER/
|
||||||
rsync -ap --info=progress2 --relative /home/$USER/.librewolf/ $FOLDER/
|
rsync -ap --info=progress2 /home/$USER/.librewolf/ $FOLDER/
|
||||||
|
|
||||||
rsync -ap --info=progress2 --relative /home/$USER/.config/Bitwarden $FOLDER/.config/
|
rsync -ap --info=progress2 --relative /home/$USER/.config/Bitwarden $FOLDER/.config/
|
||||||
rsync -ap --info=progress2 --relative /home/$USER/.config/heroic $FOLDER/.config/
|
rsync -ap --info=progress2 --relative /home/$USER/.config/heroic $FOLDER/.config/
|
||||||
|
|
Loading…
Reference in a new issue