Sleep verhindern

http://raspberrycenter.de/forum/monitor-geht

via ssh: ssh -X pi@192.168…… (-X!)

xset -q zeigt aktuelle Einstellungen

xset -dpms

xset s noblank

disabelt das powermanagement etc

http://raspberrypi.stackexchange.com/questions/2059/disable-screen-blanking-in-x-windows-on-raspbian

funktioniert hat aber nur:

You need to edit your script that's starting X. In the default build with lightdm the file to edit is

/etc/lightdm/lightdm.conf

in the SeatDefaults section it gives the command for starting the X server which I modified to get it to turn off the screen saver as well as dpms

[SeatDefaults]
xserver-command=X -s 0 -dpms

Autostart Raspberry

echo $XDG_CURRENT_DESKTOP
zeigt, welchen Window Manager man benutzt

kde: usr/share/autostart bzw. home/'name'/.config/autostart

z.b. test.sh.desktop

Desktop Entry]
Comment[en_US]=
Comment=
Exec=/home/addi/test.sh
GenericName[en_US]=
GenericName=
Hidden=true
Icon=system-run
MimeType=
Name[en_US]=
Name=
Path=
StartupNotify=true
Terminal=false
TerminalOptions=
Type=Application
X-DBUS-ServiceName=
X-DBUS-StartupType=
X-KDE-SubstituteUID=false
X-KDE-Username=
 

Raspberry

http://wiki.lxde.org/en/Autostart

http://www.forum-raspberrypi.de/Thread-tutorial-automatisches-starten-von-scripte-programme-autostart

https://wiki.archlinux.org/index.php/LXDE#Autostart_programs

auf dem Dekstop test.sh (inhalt: starte omxplayer mit bestimmtem video)

in home/pi/.config/autostart

Datei namens: test.sh.desktop

Inhalt der Datei:

[Desktop Entry]

Type=Application

Exec=/home/pi/Desktop/test.sh

Alternativ auch in /etc/xdg/autostart

Video mit Raspberry (Omxplayer) loopen

omxplayer (auf installiertem raspbian schon drauf)

loopen http://talk.olab.io/t/omxplayer-raspberry-pi/300/17

https://github.com/notandrewkaye/loopVideo

->hat aber immer noch eine Sekunde Pause… funtkioniert nicht viel anders als –loop

http://www.raspberrypi.org/forums/viewtopic.php?f=38&t=8042

direkt hello_video/video.c für Videos ohne ton

muss kompiliert werden (make im /opt/vc/src/hello_pi/hello_video)-

davor: make im /opt/vc/src/hello_pi/libs/ilclient

(make all)

in video.c ändern:

Change:

Code: Select all
         if(!data_len)
            break;

to:

dann nochmals kompilieren

Zeigt .avis nicht… nur h264

Code: Select all
         if(!data_len)
            fseek(in, 0, SEEK_SET);

alternative mit dem omxplayer: http://www.sundh.com/blog/2013/10/loop-videos-seamlessly-omxplayer/

hello_video: zuerst make in libs ordner, erst