1#!/bin/sh
2# Script to run mplayer on the console (fbdev/mga_vid/etc) without
3# the console text and/or flashing cursor getting in the way.
4# Written by Rich Felker.
5
6trap "tput cnorm ; exit 1" SIGQUIT SIGINT EXIT
7res=`PATH="$PATH:/usr/sbin" fbset | grep geometry | sed 's/^ *//'`
8width=`echo "$res" | cut -d' ' -f2`
9height=`echo "$res" | cut -d' ' -f3`
10tput civis
11clear
12mplayer -vo mga -screenw "$width" -screenh "$height" "$@" >/dev/null 2>&1
13