#!/bin/sh MPLAYER="mplayer -fs -framedrop -vo sdl" if [ `xrandr|grep -e '*'|grep 640|wc -c` -gt 0 ] then xrandr -s 1/320x240 $MPLAYER $1 xrandr -s 0/640x480 else $MPLAYER $1 fi