Forgive my ignorance, and thank you very much for this awsome App What I do is I usualy switch on xterminal: sudo gainroot /usr/sbin/kernel-load /home/user/MyDocs/kernel.txt how would I insert that? PS: whats the command for unloading? I assume it's: sudo gainroot /usr/sbin/kernel-unload /home/user/MyDocs/kernel.txt ?
if [ "$QBW_EXEC_REASON" == "QBW_STARTUP_UPDATE" ]; then# add here switch on instructions /usr/sbin/kernel-load /home/user/MyDocs/kernel.txt | sudo gainroot echo "ON"; exit 1;fi;if [ "$QBW_CURRENT_RESULTS_TEXT" == "ON" ]; then# add here switch off instructions /usr/sbin/kernel-unload /home/user/MyDocs/kernel.txt | sudo gainroot echo "OFF"; exit 0;else# add here switch on instructions /usr/sbin/kernel-load /home/user/MyDocs/kernel.txt | sudo gainroot echo "ON"; exit 1;fi;