Direkt zum Hauptbereich

Posts

Wait till hdmi is connected before starting kodi... and poll tvheadend for activity before shutdown

What?  If you run tvheadend and kodi on one device you want to wait to start kodi until hdmi is conected, Why? kodi has bugs that cause issues when started before connected to hdmi Sometimes it crashes Sometimes it stops to render text in menu How to work arround? Wait for HDMI and timeout if no recording is upcomming #!/bin/bash # This scripts wait <TIMEOUTINSECONDS> till hdmi connection got established or shutdown if no tvheadend recording is running, upcomming or some stream is consumed, served by tvheaden # Howto https://debianisttoll.blogspot.com/2021/07/wait-till-hdmi-is-connected-before.html # Source https://gist.githubusercontent.com/stesee/9ebb11cc2db6a58e6b42afb2d74e7e7b/raw/7327e42950c449c1153ebf546f60ee1d8e3d0d0d/waitTillHdmiConnected.sh # install stuff before using this script # ...
Kodi keeps crashing when it is started without connected displays. Sometimes I want to startup my kodi setup for some other reasen and start using kodi later.... then kodi was already closed with some crash log file... :( This script works arround by waiting to start kodi until some hdmi port is connected (modify the grep query to adapt to some other port name). #!/bin/bash # Some programs have issues when run without connected display. E.g. Kodi likes to crash when started without any display connected on my system. # This script starts after some hdmi port is connected. # Depends on xrandr. WARNINGTIMEOUTINSECONDS=840 TIMEOUTINSECONDS=900 POLLINGDURATIONINSECONDS=5 LOGFILE= " $HOME /waitTillHdmiConnected.log" #set start conditions SECONDS=0 triggerTimeoutActions (){      echo   ...

Send to sleep and wake up - Tvheadend / Kodi Setup

Shutdown and timed startup automation saves your setup from running 24/7. Configure Kodi         setwakeup.sh #!/bin/sh #$1 is the first argument to the script. It is the time in seconds since 1970 #this is defined in mythtv-setup with the time_t argument #this clears your alarm. echo  0 > /sys/class/rtc/rtc0/wakealarm       #this writes your alarm echo   $1  > /sys/class/rtc/rtc0/wakealarm      set script to be executable sudo chmod   +x /usr/bin/setwakeup.sh Reference https://forum.kodi.tv/showthread.php?tid=155128