Macos – OSX: Add Dock icon for dedicated Terminal command

command linedockmacosmutt

I use Mutt. I want a dock icon to launch it. Is such a thing possible?

I'm looking for a way to add a second Terminal icon to the Dock which lets me launch a specific command, "mutt" in this instance.

I want to group this icon with the other app icons, ie I'd rather not drop a .command file into the right-hand "documents" section of the dock.

Best Answer

Open /Applications/Utilities/AppleScript Editor and enter the following:

tell application "Terminal" to do script "mutt"

Save as application anywhere you want, then drag from there to the Dock.


You might need to specify mutt's absolute path. You get that from Terminal by entering

which mutt
Related Question