Skip to content

Instantly share code, notes, and snippets.

@JeanMertz
Last active August 29, 2015 14:12
Show Gist options
  • Save JeanMertz/73f6958fc758d8aceff3 to your computer and use it in GitHub Desktop.
Save JeanMertz/73f6958fc758d8aceff3 to your computer and use it in GitHub Desktop.
OS X WualaFS running in the background

Use Wuala.app on OS X in the background:

  • Download & extract Wuala scripts

    $ mkdir -p /usr/local/share
    $ curl https://cdn.wuala.com/repo/other/wuala.tar.gz | tar -xz -C /usr/local/share
  • Download & load LaunchAgent script

    $ curl -o "$HOME/Library/LaunchAgents/org.wuala.wualafs.plist" https://gist.githubusercontent.com/JeanMertz/73f6958fc758d8aceff3/raw/org.wuala.wualafs.plist
    $ launchctl load -w "$HOME/Library/LaunchAgents/org.wuala.wualafs.plist"
  • Verify Wuala Drive loaded correctly

    $ ls /Volumes/WualaDrive
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>org.wuala.wualafs</string>
<key>RunAtLoad</key>
<true/>
<key>LaunchOnlyOnce</key>
<true/>
<key>KeepAlive</key>
<false/>
<key>ProgramArguments</key>
<array>
<string>/usr/local/share/wuala/wualacmd</string>
</array>
</dict>
</plist>
@koenbollen
Copy link

Awesome!

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