#!/bin/bash
path="/System/Library/LaunchDaemons/com.apple.gamed.plist"
if [ -d "/rootfs"  ];then
    path="/rootfs/System/Library/LaunchDaemons/com.apple.gamed.plist"
fi
if launchctl list | grep -q "com.apple.gamed"; then
    echo "Stop gamed"
    launchctl stop com.apple.gamed
    launchctl unload -w "$path"
    killall -9 SpringBoard backboardd
fi