#!/bin/sh
# Ping Alarm

while ! ping -c1 "$1"; do
	sleep 5
done
notify-send "$1 on"
bell