diff options
-rw-r--r-- | .config/SuperCollider/startup.scd | 4 | ||||
-rw-r--r-- | .ssh/config | 14 |
2 files changed, 18 insertions, 0 deletions
diff --git a/.config/SuperCollider/startup.scd b/.config/SuperCollider/startup.scd index 4d51dbf..9d905a2 100644 --- a/.config/SuperCollider/startup.scd +++ b/.config/SuperCollider/startup.scd @@ -16,4 +16,8 @@ if(("aplay -l |grep 'Scarlett 18i20' > /dev/null".systemCmd) == 0, { }); postln("Loaded settings for: "++Server.local.options.device); +postln("Initializing and connecting MIDI devices."); +MIDIClient.init; +MIDIIn.connectAll; + //TODO: load all quarks from ~/git/audio automatically, don't use symlinks diff --git a/.ssh/config b/.ssh/config index 12e1527..448e0fc 100644 --- a/.ssh/config +++ b/.ssh/config @@ -90,6 +90,20 @@ Host gdvzrv ControlPath ~/.ssh/socket-%r@%h:%p ProxyCommand ssh sleepmap.de -W %h:%p +Host gtrvlr + Hostname trvlr + Port 22 + user dave + ForwardAgent yes + IdentityFile ~/.ssh/id_ed25519 + IdentitiesOnly yes + ServerAliveInterval 120 + Compression yes + ForwardX11Trusted yes + ControlMaster auto + ControlPath ~/.ssh/socket-%r@%h:%p + ProxyCommand ssh sleepmap.de -W %h:%p + Host gpitheunlord Hostname pitheunlord Port 22 |