10 lines
203 B
Bash
Executable File
10 lines
203 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -L "/var/jb" ]; then
|
|
launchctl load /var/jb/Library/LaunchDaemons/com.mousen.screendumpd.plist
|
|
else
|
|
launchctl load /Library/LaunchDaemons/com.mousen.screendumpd.plist
|
|
fi
|
|
|
|
exit 0;
|