Add some lua scripts

This commit is contained in:
Robin Gareus 2016-02-23 15:44:41 +01:00
parent 942471d21f
commit 1473c2d364
13 changed files with 422 additions and 0 deletions

10
scripts/rewind.lua Normal file
View file

@ -0,0 +1,10 @@
ardour {
["type"] = "EditorAction",
name = "Rewind",
}
function factory (params)
return function ()
Session:goto_start()
end
end