Mercurial > mplayer.hg
comparison TOOLS/mpconsole @ 4204:a451ba84410d
console mplayer launcher - by Rich Felker <dalias@aerifal.cx>
author | arpi |
---|---|
date | Thu, 17 Jan 2002 00:39:27 +0000 |
parents | |
children | a818bbab1525 |
comparison
equal
deleted
inserted
replaced
4203:7cfa69df9e0b | 4204:a451ba84410d |
---|---|
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 | |
6 trap "tput cnorm ; exit 1" SIGQUIT SIGINT EXIT | |
7 res=`fbset | grep geometry | sed 's/^ *//'` | |
8 width=`echo "$res" | cut -d' ' -f2` | |
9 height=`echo "$res" | cut -d' ' -f3` | |
10 tput civis | |
11 clear | |
12 mplayer -vo mga -screenw "$width" -screenh "$height" "$@" >/dev/null 2>&1 |