1#!/bin/bash 2 3# to get quick notifs 4# after long commands 5# 6# example usage: 7# watch -g "dig example.com +short" && notif 8notif() { 9 notify-send "done!" 10 paplay -q /usr/share/sounds/sound-icons/start # change this path to any sound file you want 11 spd-say -t female3 -r +25 "done!" 12}