]> git.pld-linux.org Git - packages/Atari800.git/blob - Atari800-chooser
- updated to 1.3.3
[packages/Atari800.git] / Atari800-chooser
1 #!/bin/sh
2
3 if [ -n "$DISPLAY" -a -x /usr/bin/atari800-x11 ] ; then
4   exec /usr/bin/atari800-x11
5 else
6   if [ -x /usr/bin/atari800-SDL ] ; then
7     exec /usr/bin/atari800-SDL
8   elif [ -x /usr/bin/atari800-svga ] ; then
9     exec /usr/bin/atari800-svga
10   else
11     if [ -x /usr/bin/atari800-x11 ] ; then
12       echo "Cannot run Atari800 - DISPLAY not found."
13       echo "Atari800-x11 needs X-server running and DISPLAY variable set."
14     else
15       echo "Cannot run Atari800 - executable not found."
16       echo "Install Atari800-x11, Atari800-SDL or Atari800-svga package."
17     fi
18   fi
19 fi
This page took 0.039087 seconds and 3 git commands to generate.