mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-12 07:46:28 +00:00
12 lines
137 B
Plaintext
12 lines
137 B
Plaintext
|
#!/bin/sh
|
||
|
# startup wrapper to open tombs
|
||
|
|
||
|
# got a tomb as argument
|
||
|
if [ $@ ]; then
|
||
|
tomb -S open $@
|
||
|
exit $?
|
||
|
fi
|
||
|
|
||
|
tomb -h
|
||
|
|
||
|
sleep 10
|