Skip to content
Andy Till edited this page May 17, 2016 · 5 revisions

With PR #106 now merged, erlyberly uses TOML for configuration instead of java properties.

The new configuration file name will be .erlyberly2 either in the home directory or ~/.config/. If upgrading erlyberly with an existing ~/.erlyberly file, a file with the new path will be created. The configuration will not be automatically copied over from the old file to the new one. This can be done manually though, and there aren't many properties.

TOML string properties

propstring = "value"

TOML numbers

propint = 10
propdouble = 10.2

TOML booleans

propboolean = true

Old configuration example

# erlyberly at https://github.com/andytill/erlyberly
#Sun May 08 13:24:54 UTC 2016
windowHeight=600.0
hideProcesses=true
windowWidth=1299.0
resultColumnWidth=426.0
pidColumnWidth=111.0
seqColumnWidth=102.0
autoConnect=false
[email protected]
modulesTreePrefWidth=321.0
functionNameColumnWidth=441.0
cookieName=riak
argsColumnWidth=299.0
hideModules=false

New configuration example

hideProcesses = false
resultColumnWidth = 170.0
windowHeight = 634.0
modulesTreePrefWidth = 19.0
showSourceInSystemEditor = false
functionNameColumnWidth = 422.0
termFormatting = "erlang"
argsColumnWidth = 436.0
durationNameColumnWidth = 77.0
regNameColumnWidth = 98.0
targetNodeName = "d"
pidColumnWidth = 109.0
windowWidth = 913.0
loadModulesRegex = ".*riak.*"
seqColumnWidth = 53.90243911743164
cookieName = "d"
hideModules = false
Clone this wiki locally