Anyone knows how I could temporarily disable the auto-suspend using a bash script and re-activate it once an app is done ?[div align=\"right\"][a href=\"index.php?act=findpost&pid=125725\"][{POST_SNAPBACK}][/a][/div]
#!/bin/shcase "$1" in off) qcop QPE/System 'setScreenSaverIntervals(int,int,int)' 0 0 0 ;; on) qcop QPE/System 'setScreenSaverIntervals(int,int,int)' -1 -1 -1 ;;esacexit 0