Skip to content

Instantly share code, notes, and snippets.

@rexarski
Created June 9, 2022 17:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rexarski/47c83bf360a66daf8089130d6b815407 to your computer and use it in GitHub Desktop.
Save rexarski/47c83bf360a66daf8089130d6b815407 to your computer and use it in GitHub Desktop.
Delete redundant macOS Launchpad icons
# Substitute APPNAME with the exact icon/app name
sqlite3 $(find /private/var/folders -name com.apple.dock.launchpad 2>/dev/null)/db/db \
"DELETE FROM apps WHERE title='APPNAME';" && \
killall Dock
@rexarski
Copy link
Author

rexarski commented Jun 9, 2022

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment