From 50908bc89ef6c68646225cdf9f3cb12386ef25e7 Mon Sep 17 00:00:00 2001 From: arpi Date: Thu, 17 Jan 2002 00:39:27 +0000 Subject: console mplayer launcher - by Rich Felker git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4205 b3059339-0415-0410-9bf9-f77b7e298cf2 --- TOOLS/mpconsole | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 TOOLS/mpconsole (limited to 'TOOLS') diff --git a/TOOLS/mpconsole b/TOOLS/mpconsole new file mode 100755 index 0000000000..37bb5424fe --- /dev/null +++ b/TOOLS/mpconsole @@ -0,0 +1,12 @@ +#!/bin/sh +# Script to run mplayer on the console (fbdev/mga_vid/etc) without +# the console text and/or flashing cursor getting in the way. +# Written by Rich Felker. + +trap "tput cnorm ; exit 1" SIGQUIT SIGINT EXIT +res=`fbset | grep geometry | sed 's/^ *//'` +width=`echo "$res" | cut -d' ' -f2` +height=`echo "$res" | cut -d' ' -f3` +tput civis +clear +mplayer -vo mga -screenw "$width" -screenh "$height" "$@" >/dev/null 2>&1 -- cgit v1.2.3