aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2021-06-19 19:55:14 +0200
committerThomas White <taw@physics.org>2021-06-19 19:55:14 +0200
commit3b1227ccc5ed3ddb9f13199cefe05baf34156c22 (patch)
tree01a4af063b23d02e4b99387e32b0cb321a928c30
parent0eb2c2c299bc57dd5abfe50dce5c9b8408ae601a (diff)
Update README.md (again)
-rw-r--r--README.md18
1 files changed, 10 insertions, 8 deletions
diff --git a/README.md b/README.md
index d276810..0d37499 100644
--- a/README.md
+++ b/README.md
@@ -116,17 +116,19 @@ Getting started
environment.
2. Install [Guile](https://www.gnu.org/software/guile/), if it's not already
there. Version 3 is required.
-3. Install Starlet (`meson build`, `ninja -C build` and `sudo ninja -C build
- install`).
+3. Install Starlet:
+ `meson build`, `ninja -C build` and `sudo ninja -C build install`
4. Start olad if it's not already running: `olad -l 3` (in a separate
terminal).
-5. Run `guile`
-6. Once in the Guile REPL, import some Starlet modules: `(use-modules (starlet
- scanout) (starlet state) (starlet fixture-library generic dimmer))`
-7. Patch a fixture with `(patch-fixture! fix <generic-dimmer> 1 #:universe 2)`
- - replace 1 and 2 with the DMX address and universe (respectively) of a real
+5. Run `guile`.
+6. Once in the Guile REPL, import some Starlet modules:
+ `(use-modules (starlet scanout) (starlet state) (starlet fixture-library
+ generic dimmer))`
+7. Patch a fixture:
+ `(patch-fixture! mydimmer <generic-dimmer> 1 #:universe 2)`
+ Replace 1 and 2 with the DMX address and universe (respectively) of a real
dimmer.
-8. Turn the dimmer on with `(at fix 100)`
+8. Turn the dimmer on with `(at mydimmer 100)`
9. Look in the _examples_ and _docs_ folders for more advanced ideas.