#!/bin/sh
# - idle_time

## delay for a specified amount of time
echo sleep $idle_time: started
exec sleep ${1:-$idle_time}
echo sleep finished
