MacOS Cookbook

Sort Application in Launchpad

defaults write com.apple.dock ResetLaunchPad -bool true; killall Dock

This will arrange all apple stock/system applications on the first launchpad page in the default order.

On the second, third etc. page all the other apps will be arranged alphabetically.

Otherwise resort to your Applications folder, list view and arrange by name.

Add path to $PATH

  1. Open the . bash_profile file in your home directory (for example, /Users/your-user-name/. bash_profile ) in a text editor.

  2. Add export PATH="your-dir:$PATH" to the last line of the file, where your-dir is the directory you want to add.

  3. Save the . bash_profile file.

  4. Restart your terminal.

Create IPA without Developer Account

  1. Expo Go pre-build

npx expo prebuild
  1. Xcode -> Open project ios directory

  2. Product -> Destination -> Any iOS devices

  3. Product Archive

  4. Open in Finder -> Right click .xcarchive -> Product/Applications -> Create folder Payload -> Drag .app file into Payload

  5. Compress Payload and Rename to xxx.ipa

  6. Add app to AltStore

Last updated