summaryrefslogtreecommitdiff
path: root/scripts/s_whoami.lua
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/s_whoami.lua')
-rw-r--r--scripts/s_whoami.lua22
1 files changed, 0 insertions, 22 deletions
diff --git a/scripts/s_whoami.lua b/scripts/s_whoami.lua
deleted file mode 100644
index d391d65095..0000000000
--- a/scripts/s_whoami.lua
+++ /dev/null
@@ -1,22 +0,0 @@
-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