Non dovrebbe essere rimosso poiché è una parte del sistema operativo.
Almegliopuoi svuotarlo completamente e rimuoverlo dal Dock.
There is a way to empty Launchpad completely—removing even Apple's
own apps. The crux of this trick is wiping out the contents of the
database Lion uses to know what goes where in Launchpad. To do so,
launch Terminal (which, as always, is in /Applications/Utilities) and
paste in this sequence of commands at the command line:
sqlite3 ~/Library/Application\ Support/Dock/*.db "DELETE from apps; DELETE from groups WHERE title<>''; DELETE from items WHERE rowid>2;"; Killall Dock
Non essere tentato di usare il comando Terminale forza bruta come rm
, dal momento che può produrre risultati indesiderati (più problemi poi guadagni) Specificomente il rm- rf è pericoloso (il f ) ignorerebbe qualsiasi avviso e cancellerebbe semplicemente irreversibilmente il file. Come puoi vedere, c'è un avviso su "non cancellare" come richiesto dal tuo sistema operativo.