Skip to content

Checks to see if your locally installed copy of Dropbox is the same as the official release

Notifications You must be signed in to change notification settings

tjluoma/is-dropbox-current

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

is-dropbox-current

Checks to see if your locally installed copy of Dropbox is the same as the official release

The Problem

Dropbox is supposed to update itself 'automagically' but sometimes the 'magic' is a bit… um… well, do you remember Ron Weasley in his first year at Hogwarts? It's like sort of like that.

The Solution

Have your computer check periodically to see if you are up-to-date, by comparing the version installed on your Mac vs the version that is offered on Dropbox.com.

If they are identical, hurray.

If not, let the user know.

If Dropbox isn't even installed (oops!) let the user know that too.

"Ok, but how?"

  1. A shell script (naturally) saved somewhere in your $PATH, which you can then either run yourself in Terminal, or run automatically via launchd

  2. A launchd plist which will tell launchd to run the check every so often. (Optional, but recommended.)

Requirements

If you are not going to use launchd, you can just run the shell script from Terminal.app anytime, and you do not need either Growl or terminal-notifier.

If you are going to use launchd, you will need some way for the script to communicate with you:

  • If you are on Mac OS X 10.8 (Mountain Lion) or later, you can use terminal-notifier. The script will check for the terminal-notifier.app to be installed in /Applications/ or the terminal-notifier program to be installed at /usr/local/bin/terminal-notifier. (Hint: if you have Xcode installed and use Homebrew, you can just do brew install terminal-notifier)

  • If you are on earlier versions of Mac OS X, you can use Growl, but only if you also have growlnotify installed. (And, obviously, Growl needs to be running for you to get the notifications.)

"What happens if I have both terminal-notifier and growlnotify installed?"

Growl notifications will show the Dropbox icon, which looks nicer. But terminal-notifier can actually launch the URL to download the latest version of Dropbox if your version is outdated. For that reason, the script will opt to use terminal-notifier if it finds both commands on your Mac.

"How do I install this?"

  1. Download the shell script and put it somewhere in your $PATH such as /usr/local/bin/is-dropbox-current.sh

  2. Make sure it is executable by running this command in Terminal: chmod 755 /usr/local/bin/is-dropbox-current.sh

  3. If you want to use launchd:

    • Download com.tjluoma.is-dropbox-current.plist and save it to ~/Library/LaunchAgents/
    • Run this command in Terminal.app: launchctl load ~/Library/LaunchAgents/com.tjluoma.is-dropbox-current.plist

Note that by default the script will run once a day at 3:00 p.m. local time. You can change that by editing the plist. I highly recommend LaunchControl for working with launchd. Lingon is also very good, and might be a little more "user friendly" if you are not familiar with launchd. Remember to reload the plist after making any changes.

Disclaimer

2013-10-17: This script is "beta" by which I mean "It should work perfectly, but it has not yet been tested under 'real world' conditions, because Dropbox has not released a new version of the Mac app since I wrote it.

It is also worth noting that this script checks http://dropbox.com/install which means two things:

  1. There may be a newer build available in the forums but those are "beta" builds.

  2. The script relies on HTML 'scraping' which is extremely fragile and prone to failure if Dropbox changes the underlying HTML to that page.

2013-10-28:

  • It seems to work fairly well.
  • I added -sender com.getdropbox.dropbox to terminal-notifier.

About

Checks to see if your locally installed copy of Dropbox is the same as the official release

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages