Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

PhotoTripper

macrumors newbie
Original poster
Nov 22, 2016
6
0
Australia
Is it possible to move unused Apple apps to a specific folder inside eg the Utilities folder without issues?
I know I have to disable the SIP for the actual move but will the Apple tentacles still find the apps when needed?

The reason I want to do this is to unclutter my app folder as I don't use and never will use many of the apps. I tried to unistall them which was easy enough but of course gave El Cap a heart attack which kept draining my battery as it probably couldn't find everything it wanted.

Looking for a simple (hopefully positive) answer and no lecturing ;)
 

KALLT

macrumors 603
Sep 23, 2008
5,380
3,415
Why don’t you hide them?
Code:
sudo chflags hidden /Applications/<application>.app


Of course, SIP must still be disabled.
 

PhotoTripper

macrumors newbie
Original poster
Nov 22, 2016
6
0
Australia
Why don’t you hide them?
Code:
sudo chflags hidden /Applications/<application>.app


Of course, SIP must still be disabled.

Ah, even better. Thank you!!!
[doublepost=1479897237][/doublepost]
Why don’t you hide them?
Code:
sudo chflags hidden /Applications/<application>.app


Of course, SIP must still be disabled.

Works great for some apps but it seems there is an issue with apps that have names with a space in them eg Game Center, Photo Booth etc. How do I enter these app names for the code to work?
 

KALLT

macrumors 603
Sep 23, 2008
5,380
3,415
Paths have to be one whole, otherwise Bash interprets them as separate parameters to the command. There are two ways to do this:
Code:
sudo chflags hidden /Applications/Game\ Center.app
sudo chflags hidden "/Applications/Game Center.app"

You can also use autocompletion when you start typing a path and press the tab key to fill in the blanks. For example, type /Applications/Game, then press tab.
 
  • Like
Reactions: PhotoTripper

PhotoTripper

macrumors newbie
Original poster
Nov 22, 2016
6
0
Australia
Paths have to be one whole, otherwise Bash interprets them as separate parameters to the command. There are two ways to do this:
Code:
sudo chflags hidden /Applications/Game\ Center.app
sudo chflags hidden "/Applications/Game Center.app"

You can also use autocompletion when you start typing a path and press the tab key to fill in the blanks. For example, type /Applications/Game, then press tab.

Awesome. Thanks for your help :)
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.