omlapp/Open Media Library.app/Contents/MacOS/Open Media Library
2014-08-05 11:06:39 +02:00

10 lines
294 B
Bash
Executable file

#!/bin/sh
cd "`dirname "$0"`"
BASE="$HOME/Library/Application Support/Open Media Library/"
if [ -e "$BASE" ]; then
launchctl start com.openmedialibrary.loginscript
open "$BASE/openmedialibrary/static/html/load.html"
else
python install.py "$BASE" &
open ../Resources/static/install.html
fi