Last active
October 19, 2024 09:18
-
-
Save fuermosi777/d2613e458465fa8d6ab75e7fd6705cdd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
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
The download link has updated. You can update line 12 with this: