Skip to content

Instantly share code, notes, and snippets.

@codewings
Last active May 13, 2024 16:06
Show Gist options
  • Save codewings/5b85037af1dbeb156726dc6c7143035a to your computer and use it in GitHub Desktop.
Save codewings/5b85037af1dbeb156726dc6c7143035a to your computer and use it in GitHub Desktop.
Remove unwanted unreal app icon from launchpad

1.Enter Sqlite3

cd $(getconf DARWIN_USER_DIR)/com.apple.dock.launchpad/db
sqlite3 --column --head db

2.Delete record from 'apps'

delete from apps where title='<CASE_SENSITIVE_APPNAME>';

delete from apps where title='EpicWebHelper';
delete from apps where title='BootstrapPackagedGame';
delete from apps where title='CrashReportClientEditor';
delete from apps where title='CrashReportClient';

3.Restart system

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