xsession not saving edit on reboot
#1
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
Reply

Logout Mark Read Team Forum Stats Members Help
xsession not saving edit on reboot0