#!/bin/bash  

USER=thomas
export XDG_RUNTIME_DIR=/run/user/1000

source /home/thomas/.env

if mountpoint -q /media/backups-home; then
		# sudo /usr/bin/rsnapshot daily
		sudo /usr/bin/rsnapshot -c /etc/rsnapshot.conf daily
		if [ $? -eq 0 ]; then                                                                                                                                                                                      
				/home/thomas/repos/slack-notifier/src/index.js 'backups' 'βœ…πŸ  Daily `/home` backup completed successfully.'	
		else
				/home/thomas/repos/slack-notifier/src/index.js 'backups' 'β›”πŸ  Daily `/home` backup failed.'	
		fi                      
else 
		echo "Backup drive not mounted"
		/home/thomas/repos/slack-notifier/src/index.js 'backups' 'πŸ’ΎπŸ  Error: `/home` backup drive not mounted.'	
fi