7 May 2017, 16:02

@azvarel I would place the script into /recalbox/scripts and call the script as a background process from the startup directory /etc/init.d for example as S32StartFanControl
This could look like this (just one proposal, you can do it however you like it):

#!/usr/bin/python

import subprocess

try:
    subprocess.Popen(["python","/recalbox/scripts/fanControl.py"])

except KeyboardInterrupt:
    print "Quit"

I have called my script that I start as fanControl.py