How to export/import app configuration and restore a previous configuration? #2869
-
There could be various formats available:
This would allow to edit, store and apply different configs in- and outside of the app as well as speed up CLI commands creation. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Not sure about this. This is a rather advanced feature and those who need it can already do it easily as the app is designed to store everything in the user defaults in standard plist binary XML format which can be exported/imported at will. To export all settings:
To import all settings (while the app is not running):
To reset defaults (while the app is not running):
Please note that for in order for export/import to work properly the display's identifiers (UUIDs) must match unless the identification method was changed to something else. So by default import/export works on the same macOS installation only. |
Beta Was this translation helpful? Give feedback.
-
https://github.com/waydabber/BetterDisplay/wiki/Export-and-import-app-settings |
Beta Was this translation helpful? Give feedback.
Not sure about this. This is a rather advanced feature and those who need it can already do it easily as the app is designed to store everything in the user defaults in standard plist binary XML format which can be exported/imported at will.
To export all settings:
defaults export pro.betterdisplay.BetterDisplay ./betterdisplay.plist
To import all settings (while the app is not running):
defaults import pro.betterdisplay.BetterDisplay ./betterdisplay.plist
To reset defaults (while the app is not running):
defaults delete pro.betterdisplay.BetterDisplay
Please note that for in order for export/import to work properly the display's identifiers (UUIDs) must match unless the identification me…