#!/bin/sh
# Ping Alarm

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