First set up your keyboard layout. For example, in Spanish:
# loadkeys es
For a list of all acceptable keymaps:
# localectl list-keymaps
| ( | |
| SynthDef(\cybernetic, { | |
| var snd, index, divide, cutoff; | |
| var freq; | |
| index = MouseY.kr(1, 7000, 1); | |
| freq = MouseX.kr(0.01, 40, 1); | |
| divide = 1; | |
| cutoff = 1; | |
| snd = LocalIn.ar(4); | |
| snd = Latch.ar(snd, PulseDivider.ar(snd.reverse, LPF.ar(snd, 10 * cutoff) * 1e5 * divide)); |
foxdot-cli.py in the same directory as the FoxDot installaton (in case you're using virtualenv, otherwise comment from lines 5 to 7)foxdot-mode.el to ~/.emacs.d/lisp(defvar foxdot-cli-path "/path/to/foxdot-cli/") in your ~/.emacs fileM-x load-library and complete with foxdot-modeC-c C-f or M-x foxdot-start to startC-c C-e or M-x foxdot-execute to evaluate a line or a block of code| ---- TidalCycles QUICK REFERENCE ---- | |
| ---------------------------------------------------------------- | |
| -- To use in your editor after or alongside your code for quick reference | |
| -- Work in progress, mostly to be used as basis for further documnentation work, sorry for the errors and omissions | |
| -- designed with atom - monokai one dark vivid as theme | |
| -- https://gist.github.com/mxactvtd/bf3fb357a419c7f063b98dfd9a66cf78 - check for update, I keep updating this quite often atm | |
| ---------------------------------------------------------------- | |
| -- Some sources of Documentation -- | |
| -- https://tidalcycles.org/patterns.html | |
| -- https://tidalcycles.org/functions.html |
foxdot-cli.py in the same directory as the FoxDot installaton (in case you're using virtualenv, otherwise comment from lines 5 to 7)foxdot-mode.el to ~/.emacs.d/lisp(defvar foxdot-cli-path "/path/to/foxdot-cli/") in your ~/.emacs fileM-x load-library and complete with foxdot-modeC-c C-f or M-x foxdot-start to startC-c C-e or M-x foxdot-execute to evaluate a line or a block of code| ;; Cyberpunk Colour Theme | |
| ;; | |
| ;; "and he'd still see the matrix in his sleep, bright lattices of logic | |
| ;; unfolding across that colorless void..." | |
| ;; William Gibson, Neuromancer. | |
| ;; | |
| (require 'color-theme) | |
| ;;;###autoload |