Foir those of you using Mac OS to time sync lyrics, and colours etc etc, and you have the expanded keyboards (there are extra function keys F13 to F20), I highly recommend an app called Karabiner. It allows you to map these extra function keys to key combinations -- in other words instead of pressing Command+Shift+t to insert a time sync, you just hit one of the F keys you have assigned -- makes it a whole lot easier than using key combinations. There is some "coding" to "program" the key, but if anyone has the app and wants the "coding" just let me know -- here's an example of the coding for the time sync key press
{
"description": "F19 to timestamp",
"manipulators": [
{
"from": { "key_code": "f19" },
"to": [
{
"key_code": "t",
"modifiers": ["command", "shift"]
}
],
"type": "basic"
}
]
}
Cheers. Dave