How to export Moom settings (especially keyboard shortcuts) to external file?

I'm working on some shell scripts to customize OS X to my preferences just by calling one script.

From a lot of native OS X options, script is going to easily import some predefined settings form 3rd party apps if possible.

My question is about Moom. I cannot spot any option to export existing settings (especially keyboard shortcuts) into non-encoded file.

Calling:

$ sudo find -x / -name "Moom"

gives nothing more than:

/Applications/Moom.app/Contents/MacOS/Moom

enter image description here


Follow the instructions provided here: https://manytricks.com/osticket/kb/faq.php?id=53

In particular you have to import the plist, not just replace the plist with your old version.

defaults import com.manytricks.Moom ~/Desktop/Moom.plist

You can find Moom app preferences on the following file:

~/Library/Preferences/com.manytricks.Moom.plist

That file is not in clear text. But you can use plutil to convert and read it in the following way:

plutil -convert xml1 -o - com.manytricks.Moom.plist