One more check on valid display which is known to be in the startup
[xcircuit.git] / examples / .xcircuitrc.py
blobfa248423c171f68db29ee9a6dc78ee9585c1ea40
1 #-----------------------------------------#
2 # xcircuitrc file for editing sheet music #
3 # (python version) #
4 # Rename this file to .xcircuitrc #
5 #-----------------------------------------#
7 # 1) Don't load any of the default libraries.
8 # Instead, load only "musiclib".
9 override("library")
10 library("/usr/local/lib/xcircuit-3.6/musiclib")
12 # 2) Load font Times-Roman and set the default font to Times-RomanISO
13 font("Times-Roman")
14 set("font", "Times-RomanISO")
16 # 3) Set various parameters for music editing
17 set("boxedit", "rhomboid-y")
18 set("colorscheme", "inverse")
19 set("xschema", "off")
21 # 4) Set Backspace = Delete
22 unbind("BackSpace", "Text Left")
23 bind("BackSpace", "Text Delete")