#!/bin/bash

if [ "$DISPLAY" = "" ]; then
  echo Graphical environment needed...
  echo
else
  wine /usr/share/games/pq/pq.exe "$@"
fi
