#!/bin/sh lastcheck=/var/spool/xineliboutput.nvidia if lsmod | grep -q nvidia; then if [ ! -e $lastcheck ]; then cat >> /etc/vdr/setup.conf.add <<- EOF xineliboutput.Video.DeinterlaceOptions = method=use_vo_driver,cheap_mode=0,pulldown=none,framerate_mode=full,judder_correction=1,use_progressive_frame_flag=1,chroma_filter=0,enabled=1 xineliboutput.OSD.Blending = 1 xineliboutput.OSD.BlendingLowRes = 1 EOF fi touch $lastcheck else rm -f $lastcheck fi