Dear visitor, welcome to VDR Portal. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.


This post has been edited 1 times, last edit by "Hans77" (Apr 20th 2009, 1:22am)
|
|
Source code |
1 |
vdr -Pxine |


|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
#!/bin/sh
# $XConsortium: xinitrc.cpp,v 1.4 91/08/22 11:41:34 rws Exp $
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap
# merge in defaults and keymaps
if [ -f $sysresources ]; then
xrdb -merge $sysresources
fi
if [ -f $sysmodmap ]; then
xmodmap $sysmodmap
fi
if [ -f $userresources ]; then
xrdb -merge $userresources
fi
if [ -f $usermodmap ]; then
xmodmap $usermodmap
fi
# Start the window manager:
/vdr/StartFrontend.sh
|
This post has been edited 2 times, last edit by "oe6jwf" (Dec 14th 2009, 10:40pm)

This post has been edited 1 times, last edit by "oe6jwf" (Dec 15th 2009, 1:24am)
|
|
Source code |
1 2 3 4 5 6 7 |
while(1) {
foreach(vdrs as vdr) {
cfg=read_config(vdr);
if (!is_alive(vdr))
start(vdr,cfg)
}
}
|

This post has been edited 1 times, last edit by "oe6jwf" (Dec 15th 2009, 12:45pm)
This post has been edited 3 times, last edit by "Hans77" (Dec 24th 2009, 12:30pm)
This post has been edited 1 times, last edit by "Atechsystem" (Mar 22nd 2010, 10:46am)
This post has been edited 2 times, last edit by "Atechsystem" (Mar 22nd 2010, 1:27pm)