29 comments

[ 2.4 ms ] story [ 73.8 ms ] thread
Hi HN, I kept being annoyed by OS X things like: repeatedly asking if I want to update OS X, opening iTunes when I plugged in my iPhone, putting screenshots only to desktop, saving screenshots as 4mb PNG instead of JPG, I couldn't minimize all my 26 opened windows in one click, my desktop always mess of files and I can’t just hide them. So I've made the app that fixes this. Demo: https://www.makeosxgreatagain.com/demo/ What keeps annoying you in OS X? I will try to add it, so we can make it great again :)
$10 for an app that executes a bunch of terminal commands?

I have half a mind to whip up something like this in Xcode this afternoon and FOSS it...

It certainly does not have enough features to warrant $10 for me.

Also, is the use of the Trump thing really necessary? :/

I'd totally contribute to that. Let's do it.
Hit me up at info@theoic.me - I’m a Obj-C/MacOS dev of 10+ years it should be a super simple project, as long as you’re okay with FOSS’ing it. :)
Any chances it could support:

  - killing full screen animations
  - hiding full screen apps like any other (cmd-h)
  - keyboard control for notifications
?

I assume those are a lot less trivial.

I just realized that you can get rid of visible notifications by activating Do Not Disturb, for which you can set a keyboard shortcut (System Preferences > Keyboard > Shortcuts > Mission Control), which is all I actually need.
// Disable update notifications:

Open System Preferences on your Mac and select “App Store.” Then click “Install macOS Updates (or “Install OS X Updates” for older software).

// To minimize all open windows in MacOS:

Minimize and Hide All Windows in Mac OS X with Command+Option+H+M.

// To stop iTunes from opening automatically when you connect your iPhone

Open iTunes and then go to Preferences by using keyboard shortcut Command-comma or by going to iTunes > Preferences. Next, click the Devices tab and then check the box for Prevent iPods, iPhones, and iPads from syncing automatically.

// How to Change Your Mac's Default Screenshot Directory

Click Command+N to open a new Finder window.

Click Command+Shift+N to create a new folder, where your screenshots will go.

Type "terminal" and select Terminal.

Ignoring the quotation marks, type "defaults write com.apple.screencapture location " making sure to enter the space at the end after 'location'.

Click Enter.

// For JPG instead of PNG:

defaults write com.apple.screencapture type jpg;killall SystemUIServer

I've already whipped up a mostly-working clone of this in Objective-C and NSTask this afternoon, using some neat tricks like 'defaults read' and 'defaults domains' I've been able to uncover even more little nooks and crannies.

I'll set up a GitHub for the project tomorrow when I'm 100% sure of it's functionality. It already has a handful more features. Anyone want to help me with a name? :P

> Stop asking for updates

I think Apple has a pretty aggressive policy around encouraging updates, and I'd imagine it's because having up-to-date software is an annoying necessity. Those notifications annoy me too, but ignoring them at the cost of missing security patches seems unideal.

Okay, well, you could disable notifications and manually check...
Sure, but I don't tend to trust myself enough to remember to do that on top of everything else I have to. I have to lean pretty heavily on reminders, and I feel like that's not uncommon.
If anyone has a way to make the red X button actually close an app like Windows, would be most greatful! Microsoft apps like Outlook tend to work, but most apps don't, the most annoying being Firefox (if I use the red X to close, it's still running and won't auto restore my tabs when I click it again). I've tried RedQuits but doesn't seem to work anymore. :/
cmd+h hides, cmd+w closes that window, cmd+q closes the app
That “Make X great again” tag line was funny for a while but I think that’s in the past. I’d choose something else.
Even priced the same as an Apple product, nice.
I gave up almost two years ago. Keeping iPhone and watch, but I feel I can do much better on Linux (fedora).

Second the comment about “make x great again”.

Make great again, would imply there was a time that the OS was overall better than it is today, which is of course rather silly since while there an incredibly long list of small imrpovements we would all love to see, there is no previous version of macOS that I imagine that see as being greater and thus would revert too. But would love to see app like, "Make OS X Even Better. Hard to imagine an app that could fix all of those things. As anything you defaults you can change via terminal commands are already available for free on github like the popular https://github.com/mathiasbynens/dotfiles, unless this app plans to have core functionality versus just running terminal commands once.