Skip to content

Instantly share code, notes, and snippets.

@Siguza
Created March 23, 2024 17:59
Show Gist options
  • Save Siguza/1eafbc41edea37844af2f5eca986ac62 to your computer and use it in GitHub Desktop.
Save Siguza/1eafbc41edea37844af2f5eca986ac62 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Setup:
# 0. Have a mail server set up, or something that provides `sendmail` with proper sender permissions.
# 1. Adjust the $drive, $buckets, $from and $to variables below to suit your needs.
# 2. Create /var/local/storagealert/$drive.txt and write 0 to it.
# 3. Put this script at /etc/cron.hourly/storagealert with chmod 0755.
set -e;
drive='PLACEHOLDER';
buckets=('95' '90' '80');
from='[email protected]';
to='[email protected]';
pct="$(df --output=pcent "/dev/$drive" | egrep -v '^Use%$')";
if [ "$(wc -l <<<"$pct")" -ne '1' ]; then
echo '`df` returned multiple lines of output:' >&2;
echo "$pct" >&2;
exit 1;
fi;
if ! grep -Pq '^\s*\d+%$' <<<"$pct"; then
echo '`df` returned bad percentage:' >&2;
echo "$pct" >&2;
exit 1;
fi;
pct="$(sed -E 's#^[[:space:]]*([[:digit:]]+)%$#\1#' <<<"$pct")";
old="$(cat "/var/local/storagealert/$drive.txt")";
echo "$pct" >"/var/local/storagealert/$drive.txt";
do_mail=false;
crossed=0;
for b in "${buckets[@]}"; do
if [ "$pct" -ge "$b" ] && [ "$old" -lt "$b" ]; then
do_mail=true;
crossed="$b";
break;
fi;
done;
if "$do_mail"; then
sendmail -t <<EOF
From: $from
To: $to
Subject: Storage more than $crossed% full
Content-Type: text/plain; charset="US-ASCII"
Drive $drive is $pct% full.
EOF
fi;
@toughguystudios
Copy link

Just curious I know this is totally unrelated and I didn't know how to communicate to you. Do you know of any way to downgrade the firmware on an Apple Lightning USB Adapter? I'm assuming the answer would be somewhere in com.apple.mobileasset.mobileaccessoryupdate. Thank you.

@Siguza
Copy link
Author

Siguza commented Feb 21, 2025

You could've gotten my email address from so many places...
But no, I don't.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment