summaryrefslogtreecommitdiff
path: root/share/scripts/s_whoami.lua
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2020-02-23 20:48:02 +0100
committerRobin Gareus <robin@gareus.org>2020-02-23 20:48:02 +0100
commit180843f9bd28b191c7404245ba0a121107992511 (patch)
treec60312dc09f76c2f55ba2383245c427e15c38dea /share/scripts/s_whoami.lua
parentbf649cd68ad46c34a656700aa6cb89416d648c64 (diff)
Also move Lua scripts to share subfolder
Diffstat (limited to 'share/scripts/s_whoami.lua')
-rw-r--r--share/scripts/s_whoami.lua22
1 files changed, 22 insertions, 0 deletions
diff --git a/share/scripts/s_whoami.lua b/share/scripts/s_whoami.lua
new file mode 100644
index 0000000000..d391d65095
--- /dev/null
+++ b/share/scripts/s_whoami.lua
@@ -0,0 +1,22 @@
+ardour { ["type"] = "Snippet", name = "Who Am I?" }
+
+function factory() return function()
+
+function whoami()
+ --pcall is the lua equivalent
+ --of try: ... catch: ...
+ if not pcall(function() local first_check = Session:get_mixbus(0) end) then
+ return "Ardour"
+ else
+ local second_check = Session:get_mixbus(11)
+ if second_check:isnil() then
+ return "Mixbus"
+ else
+ return "32C"
+ end
+ end
+end
+
+print(whoami())
+
+end end