The settings are stored using the command-line tool defaults within the application’s defaults domain namespace (ibi.aws.client).
Adjusting settings
-
Open the file
defaults.commandwith a text editor (e.g. TextEdit) -
Replace the existing values with the desired settings.
Example
#!/bin/bash
defaults write "ibi.aws.client" "Remarks" "https://server.example.internal/remarks.ibi"
defaults write "ibi.aws.client" "Logo" "/Path/To/Logo.png"
-
Save the file
-
Make the file executable
Execute configuration
The file can be executed in two ways:
-
Double-click
defaults.command -
or via Terminal:
./defaults.command
This stores the configuration using macOS defaults.
A restart of the application is required for the changes to take effect.