#!/bin/bash
# DISK MONITORING & INSTALLATION SCRIPT
# This script monitors disk usage and sends notifications.
# It can also self-install into the system crontab.
PROJECT_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
readonly PROJECT_DIR 2>/dev/null
source $PROJECT_DIR/utils.sh 2>/dev/null
INSTALLED=$1
if [[ "--install" == $INSTALLED ]]; then
log_info "disk-monitor Installation"
CMD="0 3 * * 1 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin $PROJECT_DIR/disk-monitor.sh"
add_crontab "$CMD"
exit
fi
usage=80
send_notification "$(
df -h / | grep / | awk -v max="$usage" '{
usage = $5;
gsub("%", "", usage);
if (usage > max) {
printf "⚠️ Warning ⚠️:\nDisk usage is at %d%%, which exceeds the threshold of %d%%.\n\n", usage, max;
}
printf "💾 Disk Usage Information 💾 :\nTotal: %s, Used: %s, Available: %s\n", $2, $3, $4;
}'
)"