Skip to content

Instantly share code, notes, and snippets.

@zfogg
Forked from bustbr/uninstall_xquartz.sh
Created December 3, 2016 04:22
Show Gist options
  • Save zfogg/1cc9cdf54d144900654e8431102a8dbb to your computer and use it in GitHub Desktop.
Save zfogg/1cc9cdf54d144900654e8431102a8dbb to your computer and use it in GitHub Desktop.
Uninstall XQuartz.app from OSX Yosemite/El Capitan/Sierra
#!/bin/sh
set -e
launchctl unload /Library/LaunchAgents/org.macosforge.xquartz.startx.plist
sudo launchctl unload /Library/LaunchDaemons/org.macosforge.xquartz.privileged_startx.plist
sudo rm -rf /opt/X11* /Library/Launch*/org.macosforge.xquartz.* /Applications/Utilities/XQuartz.app /etc/*paths.d/*XQuartz
sudo pkgutil --forget org.macosforge.xquartz.pkg
rm -rf ~/.serverauth* ~/.Xauthorit* ~/.cache ~/.rnd ~/Library/Caches/org.macosforge.xquartz.X11 ~/Library/Logs/X11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment