/usr/share/pyshared/ase/gui/defaults.py is in python-ase 3.6.0.2515-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | """ This is a module to handle generic ASE (gui) defaults from a ~/.ase/gui.py configuration file, if it exists.
It is imported when opening ag and can then be modified at runtime, if necessary.
syntax for each entry:
gui_default_settings['key'] = value
"""
gui_default_settings = {
'gui_graphs_string' : 'i, e - E[-1]', # default for the graph command in the gui
'covalent_radii' : None
}
def read_defaults():
import os.path
name = os.path.expanduser('~/.ase/gui.py')
config = gui_default_settings
if os.path.exists(name):
execfile(name)
return config
|