Also move Lua scripts to share subfolder

This commit is contained in:
Robin Gareus
2020-02-23 20:48:02 +01:00
parent bf649cd68a
commit 180843f9bd
129 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
ardour { ["type"] = "Snippet", name = "Export Track XML" }
function factory () return function ()
local rlp = ARDOUR.RouteListPtr ()
local sel = Editor:get_selection ()
for r in sel.tracks:routelist ():iter () do
rlp:push_back (r)
end
print (Session:export_track_state (rlp, "/tmp/rexport"))
end end