From 5ca51abeb67d0a74183b8cdfa84fc361761e0d30 Mon Sep 17 00:00:00 2001 From: Eric Renfro Date: Mon, 4 Nov 2024 20:31:29 -0500 Subject: [PATCH] Added browser profiles being backed up since already handled individually --- .bashrc.d/backup-func | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.bashrc.d/backup-func b/.bashrc.d/backup-func index 6091dcd..9fb85d1 100644 --- a/.bashrc.d/backup-func +++ b/.bashrc.d/backup-func @@ -29,8 +29,8 @@ function backup-firefox() { mkdir -p "${target}/${archive}/${hostname}" - pushd "$HOME/.mozilla" &>/dev/null - tar -cvvf "${target}/${archive}/${hostname}/${hostname}-${date}_firefox.tar" firefox + pushd "$HOME" &>/dev/null + tar -cvvf "${target}/${archive}/${hostname}/${hostname}-${date}_firefox.tar" .mozilla/firefox zstd --rm -6 "${target}/${archive}/${hostname}/${hostname}-${date}_firefox.tar" popd &>/dev/null } @@ -124,7 +124,9 @@ function backup-home() { --exclude=psi-jack/.alchemynext/wine \ --exclude=psi-jack/.cache \ --exclude=psi-jack/.config/rambox \ + --exclude=psi-jack/.config/vivaldi/Default \ --exclude=psi-jack/.firestorm_x64/cache \ + --exclude=psi-jack/.mozilla/firefox \ --exclude=psi-jack/.thunderbird \ --exclude=psi-jack/.steam \ --exclude=psi-jack/.var \