#!/bin/sh

if test -f /var/tvout; then
  tvoff
  rm -f /var/tvout
else
  tvon
  echo "" > /var/tvout
fi
