-
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
Last active
August 29, 2015 14:12
-
-
Save JeanMertz/73f6958fc758d8aceff3 to your computer and use it in GitHub Desktop.
OS X WualaFS running in the background
This file contains hidden or 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
<?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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Awesome!