Contents  DropDMG Manual  Translate  Technical Support

3.11   Creating a DropDMG Quick Action

On macOS 10.14 and later, you can create Quick Actions that appear as buttons in Finder’s preview pane and on the Touch Bar.

Automator

To use Automator to make a Quick Action that invokes DropDMG:

  1. Open the Automator application.

  2. Create a new workflow with Quick Action as the document type.

  3. Drag an Create Disk Image/Archive action into the right portion of the window.

  4. Choose the DropDMG configuration that you want to use:

    quick action

  5. Choose File ‣ Save and enter a name for your Quick Action such as DropDMG.

  6. The Extensions pane of System Settings lets you control whether your Quick Action is enabled.

Shortcuts

On macOS 13 and later, you can also use Shortcuts to create a DropDMG Quick Action:

  1. Open the Shortcuts application and choose File ‣ New Shortcut.

  2. Set your desired action title.

  3. In the Action Library pane, search for AppleScript and drag in a Run AppleScript action.

  4. Paste in this script:

    on run {input, parameters}
        tell application "DropDMG"
            return create from file input --configuration name "My Config"
        end tell
    end run
    

    You can optionally remove the -- and specify a configuration name, if you don’t want to use the current one.

  5. Click on Input and select Shortcut Input. Set it to receive Files.

  6. In the Shortcut Details pane, select Use as Quick Action and Finder.

  7. Now the shortcut should look like this:

    quick action shortcut

    and it should have a button to invoke it when a file is selected in Finder:

    quick action shortcut button

     Contents  DropDMG Manual  Translate  Technical Support