Tomb/src/tomb-open

12 lines
137 B
Plaintext
Raw Normal View History

#!/bin/sh
# startup wrapper to open tombs
# got a tomb as argument
if [ $@ ]; then
tomb -S open $@
exit $?
fi
tomb -h
sleep 10