mirror of
https://github.com/mpv-player/mpv
synced 2024-11-03 03:19:24 +01:00
d34041569e
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2 b3059339-0415-0410-9bf9-f77b7e298cf2
13 lines
196 B
Bash
Executable File
13 lines
196 B
Bash
Executable File
#! /bin/sh
|
|
|
|
if [ -c /dev/fb0 ]; then
|
|
HEAD0=/dev/fb0
|
|
HEAD1=/dev/fb1
|
|
else
|
|
HEAD0=/dev/fb/0
|
|
HEAD1=/dev/fb/1
|
|
fi
|
|
matroxset -f ${HEAD1} -m 0
|
|
matroxset -f ${HEAD0} -m 2
|
|
matroxset -f ${HEAD1} -m 1
|