1 /*
2  * $Id: custom.i,v 1.1 2005-09-18 22:05:54 dhmunro Exp $
3  * Default version of user customization file --
4  * read after std.i and all package initalization files.
5  */
6 /* Copyright (c) 2005, The Regents of the University of California.
7  * All rights reserved.
8  * This file is part of yorick (http://yorick.sourceforge.net).
9  * Read the accompanying LICENSE file for details.
10  */
11 
12 /* With yorick-1.6, you should usually put customizations in
13  * ~/yorick/i-start/ (or ~/Yorick/i-start/).  All files whose names
14  * end in ".i" in that directory will be included at startup, in
15  * alphabetical order.  Consider using autoload in any i-start files.
16  * (see help,autoload and look in Y_SITE/i-start for examples.)
17  * Do not have a ~/yorick/custom.i unless you need to change the
18  * default command line processing.
19  */
20 
21 /* Place your own customizations here.
22 
23    Be careful!  You can break Yorick in a personalized way, so that only
24    you will be affected -- this makes it difficult to get anyone else to
25    believe there is a problem!
26 
27    Examples:
28 
29    // Read in my_special_functions.i (in ~/Yorick), which I always need.
30    #include "my_special_functions.i"
31 
32    // Use ugly boxed graphics and waste screen real estate by default.
33    pldefault, style="boxed.gs", dpi=100;
34 
35  */
36 
37 /* This should be the final line in your custom.i file-- it implements
38    the default command line processing (see help for process_argv).  */
39 command_line= process_argv();
40