Kodi Community Forum
xsession not saving edit on reboot - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111)
+---- Forum: Linux (https://forum.kodi.tv/forumdisplay.php?fid=52)
+---- Thread: xsession not saving edit on reboot (/showthread.php?tid=93913)



xsession not saving edit on reboot - Hybridtech - 2011-02-11

Hi iv been following a tutorial by myfrog to get my origen vf110 display working but when i edit xsessions like so :

Code:
#!/bin/bash
/usr/local/sbin/LCDd -c /etc/LCDd.conf
/usr/bin/xbmc --standalone
case "$?" in
    0 ) # Quit
        touch /tmp/noRestartXBMC
        break ;;
    64 ) # Shutdown System
        sleep 10 ;;
    65 ) # Warm Reboot
        echo Restarting XBMC ... ;;
    66 ) # Reboot System
        sleep 10 ;;
     * ) ;;
esac

When i add the following: /usr/local/sbin/LCDd -c /etc/LCDd.conf
On the next reboot its gone, preventing lcdproc to boot on startup, when i run the same command in terminal the lcd works greatHuh

I noticed that when im typing: /usr/local/sbin/LCDd -c /etc/LCDd.conf
the local part turns green i dont know if this is anything to do with it.
Any help would be hughly appreciated.

Thanks