#!/usr/bin/env bash if $(dunstctl is-paused); then dunstify --appname="notifications" --icon="chronometer-start" "here's what happened" -u low dunstctl set-paused false else dunstify --appname="notifications" --icon="chronometer-pause" "pausing" -u low sleep 2 dunstctl set-paused true fi