xuv's notebook

Side notes, howtos and random bits of information related to Julien Deswaef's projects

User Tools

Site Tools


tools:fluxus_tips_tricks

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
tools:fluxus_tips_tricks [2013/03/24 14:26] – created Julien Deswaeftools:fluxus_tips_tricks [2013/03/24 14:34] (current) – [Notes] Julien Deswaef
Line 5: Line 5:
 ===== Doc ===== ===== Doc =====
   * [[http://www.pawfal.org/fluxus/docs/0.17/en/index.html|Fluxus doc]] extracted and html-ised from the runtime documentation system.   * [[http://www.pawfal.org/fluxus/docs/0.17/en/index.html|Fluxus doc]] extracted and html-ised from the runtime documentation system.
-  * [http://en.flossmanuals.net/fluxus/index/|[Fluxus flossmanual]]+  * [[http://en.flossmanuals.net/fluxus/index/|Fluxus flossmanual]]
  
 ===== Notes ===== ===== Notes =====
Line 25: Line 25:
     (pdata-map! (lambda (c) (vector (flxrnd)(flxrnd)(flxrnd) 1)) "c"))     (pdata-map! (lambda (c) (vector (flxrnd)(flxrnd)(flxrnd) 1)) "c"))
 </code> </code>
 +
 +=== .fluxus.scm startup script ===
 +The **.fluxus.scm** script is loaded at startup **if** it is located in your /home/<user>/ directory (for linux users).
 +
 +Here's an example of a startup script with a slight delay inserted to be sure evry-thing is up and running before executing the script:
 +
 +<code=scheme>
 +(spawn-timed-task (+ (time-now) .3)
 +    (lambda () (begin
 +            (set-cursor 'crosshair))
 +        ;(set-screen-size (vector 1440 900))
 +        ;(set-screen-size (vector 1152 720))
 +        ;(set-screen-size (vector 1280 720))
 +        (set-full-screen)
 +        )
 +)
 +</code>
 +
  
  
tools/fluxus_tips_tricks.1364131562.txt.gz · Last modified: 2013/03/24 14:26 by Julien Deswaef