diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/backup-firefox | 1 | ||||
-rwxr-xr-x | scripts/backup-thunderbird | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/scripts/backup-firefox b/scripts/backup-firefox index 9b80d5f..c15f813 100755 --- a/scripts/backup-firefox +++ b/scripts/backup-firefox @@ -4,6 +4,7 @@ profiles=( ) # List of profiles timestamp="$(date +"%Y%m%d-%H%M%S")-" user_name=$(whoami) user="$user_name/" +home="/home/" firefox_pid=$(ps -C firefox u | grep $user_name | awk '{print $2}') # Current Firefox pid psd=$(systemctl is-active psd) # psd activation diff --git a/scripts/backup-thunderbird b/scripts/backup-thunderbird index ca67b72..2caaf2a 100755 --- a/scripts/backup-thunderbird +++ b/scripts/backup-thunderbird @@ -4,6 +4,7 @@ profiles=( ) # List of profiles timestamp="$(date +"%Y%m%d-%H%M%S")-" user_name=$(whoami) user="$user_name/" +home="/home/" thunderbird_pid=$(ps -C thunderbird u | grep $user_name | awk '{print $2}') # Current thunderbird pid # If the backup location doesn't exist yet, create it |