mikshaw
Group: Members
Posts: 4856
Joined: July 2004 |
|
Posted: April 07 2006,15:33 |
|
put something like this in .xinitrc, just before the windowmanager: mplayer /path/to/filename.mpg &
Since it will start to load before the window manager does, it might be better to put it in a script with a pause, though:
Code Sample | #!/bin/sh sleep 3 exec mplayer /path/to/filename.mpg | and start the script from xinitrc, with "&" at the end of the script command.
-------------- http://www.tldp.org/LDP/intro-linux/html/index.html
|