scripts

Scripts for general automations
git clone git://git.laack.co/scripts.git
Log | Files | Refs

commit d4e5e61b5994415a3342e111986d8d5bb61a7759
parent 64262878e248b5f46afe79328df726e93134d292
Author: Andrew Laack <andrew@laack.co>
Date:   Mon, 18 May 2026 07:09:28 -0500

Added script to temporarily mask notifications from dbus; added backup directory to encrypted backup job

Diffstat:
Mbackups/encrypted-backup.sh | 3+++
AdisableNotifications.sh | 4++++
2 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/backups/encrypted-backup.sh b/backups/encrypted-backup.sh @@ -15,5 +15,8 @@ umount -l $HOME/backup || true sshfs root@andrew-1.selfhost.imbue.com:/home/host/.openhost/local_compute_space/app_archive/backup $HOME/backup tar -czf - $HOME/personal-files | gpg -c --batch --yes --passphrase "$ENCRYPTION_PW" -o /home/andrew/backup/personal-files-$NOW.tar.gz.gpg +tar -czf - /home/backup | gpg -c --batch --yes --passphrase "$ENCRYPTION_PW" -o /home/andrew/backup/backup-$NOW.tar.gz.gpg + + date | tee -a $HOME/logs/backup-encrypted-times.txt diff --git a/disableNotifications.sh b/disableNotifications.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +# Mask dbus notification messages +dunstctl set-paused true