From c93e075ef2c477b902b2d0cb55ca7c342655f2c1 Mon Sep 17 00:00:00 2001 From: dvs1 Date: Sat, 26 Oct 2024 21:36:27 +1000 Subject: Move aataaj.lua configuration options to a conf file. --- .aataaj.conf.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .aataaj.conf.lua (limited to '.aataaj.conf.lua') diff --git a/.aataaj.conf.lua b/.aataaj.conf.lua new file mode 100644 index 0000000..642d24c --- /dev/null +++ b/.aataaj.conf.lua @@ -0,0 +1,12 @@ +-- This works coz LuaJIT automatically loads the jit module. +if type(jit) == 'table' then + io.write(arg[0] .. ' is being run by ' .. jit.version .. ' under ' .. jit.os .. ' on a ' .. jit.arch .. '\n') +else + io.write(arg[0] .. ' is being run by Lua version ' .. _VERSION .. '\n') +end + +return { + ['aliases'] = { + {name='Screen', dev='HDMI9'}, + }; +} -- cgit v1.1