Hi just noticed an error in the menu.json mate that will make this invalid for the next KUAL release (which is more strict about invalid files)
Code:
{
"items": [
{"name": "Toggle ON/OFF", "priority": 0, "action": "bin/FLtoggle.sh"},
{"name": "Toggle OFF on Wakeup", "priority":0, "action": "bin/FLtoggleWake.sh"},
]
}
Should read
Code:
{
"items": [
{"name": "Toggle ON/OFF", "priority": 0, "action": "bin/FLtoggle.sh"},
{"name": "Toggle OFF on Wakeup", "priority":0, "action": "bin/FLtoggleWake.sh"}
]
}
no comma
I can repack at some point if you are not about.
Cheers.