Question

This question is super similar to this, but I'm curious how to launch the shell script in a non-login shell prompt. I already have it set up to run with iterm2 when I double-click. I don't really care if it uses iterm2 or Terminal, I can easily switch that if needed. I really am just interested in getting it to run in a non-login prompt.

I have my script set to run by dash (!#/usr/bin/env dash) but because it first starts up a zsh login prompt it sometimes prompts me things I don't want it to bother with (e.g., starting my ssh agent and asking if I want to update oh-my-zsh).

My guess (I might be wrong) is that if it started as a non-login prompt it wouldn't try to do these things. If it turns out that zsh non-login prompt still does this then I can probably set it up to run straight in dash in a similar way.

Was it helpful?

Solution

The Automator application can be used to create an application that will run a shell script. The steps are given below.

  1. Open the Automator application.
  2. Choose New Document.
  3. Highlight the icon labeled Application, then select Choose.

  4. Under Library, select Utilities, then drag Run Shell Script to the window labeled Drag actions or files here to build your workflow.

  5. Change Pass input: to as arguments, as shown below.

  6. Replace the script with your own text. A simple example is given below.

  7. From the menu bar, select File->Save..., as shown below. When done select Save.

  8. Quit the Automator application.

  9. (Optional) Find the new application in the Finder. Right click on the new application and select Get Info. Drag and drop a new icon set (.icns) file over the existing icon for the application, as shown below.

    The result is shown below.

    Note: A .icns is not the same as a .jpg or .png file. You have to convert .jpg or .png to a .icns file before being used as a icon.

  10. Test the new application. In this case, double clicking on the icon for the new application in the Finder produces the popup shown below.

Licensed under: CC-BY-SA with attribution
Not affiliated with apple.stackexchange
scroll top