Skip to content

Instantly share code, notes, and snippets.

@fuermosi777
Last active May 22, 2023 17:09
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save fuermosi777/d2613e458465fa8d6ab75e7fd6705cdd to your computer and use it in GitHub Desktop.
Save fuermosi777/d2613e458465fa8d6ab75e7fd6705cdd to your computer and use it in GitHub Desktop.
echo "Free Things 3"
echo "Removing current Thing 3 and its files..."
osascript -e 'quit app "things"'
rm -rf /Applications/Things3.app
rm -rf ~/Library/Caches/com.culturedcode.ThingsMac
rm -rf ~/Library/Containers/com.culturedcode.ThingsMac
rm -rf ~/Library/Preferences/com.culturedcode.ThingsMac.plist
echo "Downloading new Things 3 from the website"
curl -L http://culturedcode.com/things/download/ -o ~/Desktop/Things3.zip
echo "Unzipping..."
unzip -o ~/Desktop/Things3.zip -d ~/Desktop
echo "Moving to Application folder and delete zip file..."
mv ~/Desktop/Things3.app /Applications/
rm -rf ~/Desktop/Things3.zip
echo "Done!"
open -a Things3
@vandamd
Copy link

vandamd commented May 17, 2023

The download link has updated. You can update line 12 with this:

curl -L http://culturedcode.com/things/download/ -o ~/Desktop/Things3.zip

@fuermosi777
Copy link
Author

The download link has updated. You can update line 12 with this:

curl -L http://culturedcode.com/things/download/ -o ~/Desktop/Things3.zip

Thank you. Updated.

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