#!/bin/sh

FIFO=/var/tmp/g15fifo

if [ ! -p $FIFO ]; then
    mkfifo $FIFO
fi

exec /opt/pyg15/g15lcd $FIFO &> /dev/null 

