-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTaskfile.yml
More file actions
33 lines (29 loc) · 1.09 KB
/
Copy pathTaskfile.yml
File metadata and controls
33 lines (29 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# https://taskfile.dev
version: '3'
vars:
FX_NAME: stutter
FX_SLOT: 0
MIDI_SLOT_IN: 1
MIDI_SLOT_OUT: 1
tasks:
show:
cmds:
- ../../../tools/logue-cli/logue-cli-linux64-0.07-2b/logue-cli probe -m modfx -i {{.MIDI_SLOT_IN}} -o {{.MIDI_SLOT_OUT}}
probe:
cmds:
- ../../../tools/logue-cli/logue-cli-linux64-0.07-2b/logue-cli probe -l
clear:
cmds:
- ../../../tools/logue-cli/logue-cli-linux64-0.07-2b/logue-cli clear -m modfx -s {{.FX_SLOT}} -i {{.MIDI_SLOT_IN}} -o {{.MIDI_SLOT_OUT}}
load:
cmds:
- ../../../tools/logue-cli/logue-cli-linux64-0.07-2b/logue-cli load -i {{.MIDI_SLOT_IN}} -o {{.MIDI_SLOT_OUT}} -u {{.FX_NAME}}.ntkdigunit -s {{.FX_SLOT}}
make:
cmds:
- make
- ../../../tools/logue-cli/logue-cli-linux64-0.07-2b/logue-cli clear -m modfx -s {{.FX_SLOT}} -i {{.MIDI_SLOT_IN}} -o {{.MIDI_SLOT_OUT}}
- ../../../tools/logue-cli/logue-cli-linux64-0.07-2b/logue-cli load -i {{.MIDI_SLOT_IN}} -o {{.MIDI_SLOT_OUT}} -u {{.FX_NAME}}.ntkdigunit -s {{.FX_SLOT}}
default:
cmds:
- echo "Commands - show | probe | load | make"
silent: true