aboutsummaryrefslogtreecommitdiffstats
path: root/.aataaj.conf.lua
diff options
context:
space:
mode:
authordvs12024-10-26 21:36:27 +1000
committerdvs12024-10-26 21:36:27 +1000
commitc93e075ef2c477b902b2d0cb55ca7c342655f2c1 (patch)
tree67746dbe30e6b8263f8de4378d397d446e10bb16 /.aataaj.conf.lua
parentAdded the rest of the logging and debug level stuff from apt-panopticon, exce... (diff)
downloadJackOnAllDevices-c93e075ef2c477b902b2d0cb55ca7c342655f2c1.zip
JackOnAllDevices-c93e075ef2c477b902b2d0cb55ca7c342655f2c1.tar.gz
JackOnAllDevices-c93e075ef2c477b902b2d0cb55ca7c342655f2c1.tar.bz2
JackOnAllDevices-c93e075ef2c477b902b2d0cb55ca7c342655f2c1.tar.xz
Move aataaj.lua configuration options to a conf file.
Diffstat (limited to '')
-rw-r--r--.aataaj.conf.lua12
1 files changed, 12 insertions, 0 deletions
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 @@
1-- This works coz LuaJIT automatically loads the jit module.
2if type(jit) == 'table' then
3 io.write(arg[0] .. ' is being run by ' .. jit.version .. ' under ' .. jit.os .. ' on a ' .. jit.arch .. '\n')
4else
5 io.write(arg[0] .. ' is being run by Lua version ' .. _VERSION .. '\n')
6end
7
8return {
9 ['aliases'] = {
10 {name='Screen', dev='HDMI9'},
11 };
12}