1
0
Fork 0

add upgrade notes, add run folder

main
Luka Prinčič 2023-05-02 18:58:58 +02:00
parent fa232b972b
commit 8aca939bb9
4 changed files with 125 additions and 0 deletions

36
2023_Upgrade_notes.md Normal file
View File

@ -0,0 +1,36 @@
# trans.fail/xenotopic.network upgrade notes
`(maj 2023)`
## general
- jitakami/processing midi(values 0-127)->osc values (0-1000?) (one day)
- jitakami/p5: titles in source instead of images?
- titles as osc messages? (type[ography] engine?)
## ZERO
add:
- bass/kick
- percusion?
- pads?
## INTERRUPT
## TRAP
## PARITY
## ADJUST
## CARRY
## OVERFLOW

14
run/processing-runsketch.sh Executable file
View File

@ -0,0 +1,14 @@
#!/bin/bash
if [[ -z $1 ]]; then
echo "error. no argument."
echo "need the sketch path"
else
export DISPLAY=":0"
~/.local/src/processing/processing/processing-java \
--force \
--sketch=$1 \
--run \
--output=$1/output
fi

49
run/runjitakami.sh Executable file
View File

@ -0,0 +1,49 @@
#!/bin/bash
# where is our location of this script?
DIR="$(dirname -- "$(readlink -f "${BASH_SOURCE}")")"
# where is our sketch? path to the folder, not .pde!
SKETCH=$DIR"/../pde/jitakami/"
# is your processing-java in $PATH?
PROCESSING="processing-java"
#PROCESSING="/home/random/.local/src/processing/processing/processing-java"
# depends on how your dual-head is setup
# see also processing preferences for secondary display setting
#export DISPLAY=":0"
# needed on my awesome window manager
wmname LG3D
# restart on exit/kill. use "entr killall java" to restart on save:
# ls ~/PROJECTS/INTERFACE\ FRACTURES/IF4Q/pde/IF4Q/*.pde | entr killall java
while (true)
do
echo "
";
echo "---------------------------------------------------"
echo "Hello to JITAKAMI!"
echo
echo "~~~ Processing version:..."
# clear
# version of processing?
processing-java --help|grep "Command line"
echo
echo "~~~ Program starting - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "
$PROCESSING \
--force \
--sketch="$SKETCH" \
--run \
--output="$SKETCH"/output
echo
echo "~~~ Program has quit. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "
echo
done

26
run/runjitscd.sh Executable file
View File

@ -0,0 +1,26 @@
#!/bin/bash
# where resides sclang executable?
SCLANG=/usr/local/bin/sclang
# echo this file: $BASH_SOURCE
# echo this dir: `dirname $BASH_SOURCE`
# main IF4Q.scd is ../scd/IF4Q.scd from here..
SCDMAIN=`dirname $BASH_SOURCE`/../scd/jitakami.scd
#echo $SCLANG $SCDMAIN
export DISPLAY=":0.0"
while (true)
do
$SCLANG $SCDMAIN
echo
echo "~~~ Program has quit. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "
echo
sleep 3;
done