diff options
author | dvs1 | 2024-10-31 03:05:22 +1000 |
---|---|---|
committer | dvs1 | 2024-10-31 03:05:22 +1000 |
commit | 774fecec137b67f53d6ddfe34c1cd0f339b424cf (patch) | |
tree | d56c1b8c318d78b67bd03e4732d271bc94a19793 /.aataaj_JACK.lua | |
parent | Shut up more things. (diff) | |
download | JackOnAllDevices-774fecec137b67f53d6ddfe34c1cd0f339b424cf.zip JackOnAllDevices-774fecec137b67f53d6ddfe34c1cd0f339b424cf.tar.gz JackOnAllDevices-774fecec137b67f53d6ddfe34c1cd0f339b424cf.tar.bz2 JackOnAllDevices-774fecec137b67f53d6ddfe34c1cd0f339b424cf.tar.xz |
Start up jack-plumbing in the example.
Diffstat (limited to '')
-rwxr-xr-x | .aataaj_JACK.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.aataaj_JACK.lua b/.aataaj_JACK.lua index 5c63507..d3cdf2e 100755 --- a/.aataaj_JACK.lua +++ b/.aataaj_JACK.lua | |||
@@ -1,7 +1,8 @@ | |||
1 | #!/usr/bin/env luajit | 1 | #!/usr/bin/env luajit |
2 | 2 | ||
3 | -- An example users .aataaj_JACK.lua script that just starts qsynth. | 3 | -- An example users .aataaj_JACK.lua script that just starts jack-plumbing and qsynth. |
4 | 4 | ||
5 | local _ = require 'PolygLua' | 5 | local _ = require 'PolygLua' |
6 | 6 | ||
7 | if _.runnable'jack-plumbing' then __'jack-plumbing':noErr():noOut():forkOnce() end | ||
7 | if _.runnable'qsynth' then __'qsynth':noErr():noOut():forkOnce() end | 8 | if _.runnable'qsynth' then __'qsynth':noErr():noOut():forkOnce() end |