Is this a bug or am I just not getting something?
Hide checkbox
If you don’t want an item’s windows to be visible after login, select Hide.
This option has no effect on server connections; server connections always appear in the Finder after login.
My Apple 'Users & Groups' HELP (click the (?))says:
I would think that Mail is a server-based thing.
- Patrick
=======
Thanks! I tested with some apps (only tried Mail and FB Messenger so far), and it does seem like the slightly more 'local(?)' apps (Gimp, Photos, Garageband) are willing to launch on startup with no window.
Do you happen to know of any other way I can launch Mail on startup without having to deal with it generating a window?
I'm using 'Users & Groups' ➡ 'Login Items' to have apps launch on startup, and I check the 'Hide' column, yet apps still generate a window on startup.
Is this a bug or am I just not getting something?
View attachment 34259
I don't offhand, but I would try a Google search like this:
..
There may be something in one of those hits that you could use...???
But I would also take a guess that something like AppleScript would need to be involved.
But just being a bit curious here, why not just keep things simple and just click your mail app icon when and if you need to use your email???
BTW, I fail to see the reason to open up an app and then have it hidden, especially if it is not going to be used right away. Anyway, just my two bits worth and not really any of my business. Sometimes the customer is correct or right.
- Patrick
=======
Functionality such as this is the very reason I'd think the option even existed. And I can't help but wonder if apps such as Mail seemingly 'ignoring' the Hidden option is truly intended behaviour or more of an oversight.
In the particular case with Mail it seems I don't get new email notifications unless Mail is running. Which is why it would be neat to automate always having it open and running in the background without having to bother with closing a window at every startup.
Same logic for every other app that has 'passive' functionality I need daily, just running in the background.
I have no idea at all why and how Apple does some things, and some defies any logic on my behalf.
To overcome this problem, I would suggest AppleScript could come to your rescue, and then add it to your login items and let it do its thing... Open mail, close window or minimize window,.. or just stay out of sight in the background until needed... etc. I would think something like that should work.
I'm sure you can find something here, or even modify the Google search accordingly if needed:
'mac applescript open Mai.app then close its window' and you should get something like this:
I would be very surprised if you don't find something useful in some of those hits that could do what you want.
I'm sorry I can't provide you with a ready-made Applescript as I am not a very good apple scripture.
- Patrick
=======
I have no idea at all why and how Apple does some things, and some defies any logic on my behalf.
To overcome this problem, I would suggest AppleScript could come to your rescue, and then add it to your login items and let it do its thing... Open mail, close window or minimize window,.. or just stay out of sight in the background until needed... etc. I would think something like that should work.
I'm sure you can find something here, or even modify the Google search accordingly if needed:
'mac applescript open Mai.app then close its window' and you should get something like this:
I would be very surprised if you don't find something useful in some of those hits that could do what you want.
I'm sorry I can't provide you with a ready-made Applescript as I am not a very good apple scripture.
- Patrick
=======
tell application "Mail"
activate
end tell
tell application "Finder"
set visible of process "Mail" to false
end tell
If Mail launches at startup but is not visible, doesn't that mean you need to click on it in the Dock, Launcher or Applications folder to make it visible?
If so how does that differ from just launching it from the above options?
It's kind of a moot point for me as I seldom turn my computer off. When I do I just launch the apps I use most straight off the dock, I have arranged it so they are the first three items on the left.
This approach could probably be expanded to other apps as well. Thanks for pointing me in the right direction!
I meant if you have to click on the Mail app to reveal it, why not click on it to launch it? It only takes a few seconds for Mail to launch for me, I suppose some time would be saved loading new messages other than that I can't see the advantage.
This means what it says - all the Windows you had open when you restarted/shutdown will automatically reopen when you next log in.