105 lines
3.1 KiB
Bash
105 lines
3.1 KiB
Bash
#!/bin/bash
|
|
# macOS Ghost Client 安装脚本
|
|
# 用法: ./install.sh [ghost路径]
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
GHOST_SRC="${1:-$SCRIPT_DIR/build/bin/ghost}"
|
|
APP_DIR="/Applications/GhostClient.app"
|
|
APP_BIN="$APP_DIR/Contents/MacOS/ghost"
|
|
|
|
echo "=== GhostClient 安装程序 ==="
|
|
echo ""
|
|
|
|
# 检查源文件
|
|
if [ ! -f "$GHOST_SRC" ]; then
|
|
echo "错误: 找不到 $GHOST_SRC"
|
|
echo ""
|
|
echo "请先编译: ./build.sh"
|
|
echo "或指定路径: $0 <ghost可执行文件路径>"
|
|
exit 1
|
|
fi
|
|
|
|
echo "源文件: $GHOST_SRC"
|
|
echo ""
|
|
|
|
set -e
|
|
|
|
# 1. 停止旧进程
|
|
echo "[1/6] 停止旧进程..."
|
|
pkill -9 -f "$APP_BIN" 2>/dev/null || true
|
|
|
|
# 2. 重置系统权限(关键步骤!避免权限缓存导致空白桌面)
|
|
echo "[2/6] 重置系统权限..."
|
|
echo " (这会清除屏幕录制和辅助功能的旧授权,需要重新授权)"
|
|
tccutil reset ScreenCapture 2>/dev/null || true
|
|
tccutil reset Accessibility 2>/dev/null || true
|
|
|
|
# 3. 创建应用程序包
|
|
echo "[3/6] 创建应用程序..."
|
|
sudo rm -rf "$APP_DIR"
|
|
sudo mkdir -p "$APP_DIR/Contents/MacOS"
|
|
sudo mkdir -p "$APP_DIR/Contents/Resources"
|
|
|
|
# 复制 ghost 到 app bundle 内部
|
|
sudo cp "$GHOST_SRC" "$APP_BIN"
|
|
sudo chmod +x "$APP_BIN"
|
|
|
|
# 创建 Info.plist
|
|
sudo tee "$APP_DIR/Contents/Info.plist" > /dev/null << 'EOF'
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>CFBundleExecutable</key>
|
|
<string>ghost</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>com.ghost.client</string>
|
|
<key>CFBundleName</key>
|
|
<string>GhostClient</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>1.0</string>
|
|
<key>LSUIElement</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|
|
EOF
|
|
|
|
# 4. 清除隔离属性
|
|
echo "[4/6] 清除隔离属性..."
|
|
sudo xattr -cr "$APP_DIR"
|
|
|
|
# 5. 签名应用
|
|
echo "[5/6] 签名应用..."
|
|
sudo codesign --force --deep --sign - "$APP_DIR"
|
|
|
|
# 6. 添加到登录项(开机自启)
|
|
echo "[6/7] 添加到登录项..."
|
|
osascript -e 'tell application "System Events" to delete login item "GhostClient"' 2>/dev/null || true
|
|
osascript -e 'tell application "System Events" to make login item at end with properties {path:"/Applications/GhostClient.app", hidden:true}' 2>/dev/null && echo " 已添加开机自启" || echo " 添加失败,请手动添加"
|
|
|
|
# 7. 完成
|
|
echo "[7/7] 安装完成!"
|
|
echo ""
|
|
echo "========================================"
|
|
echo " 下一步: 授权系统权限"
|
|
echo "========================================"
|
|
echo ""
|
|
echo "1. 启动应用 (会自动弹出权限请求):"
|
|
echo ""
|
|
echo " open /Applications/GhostClient.app"
|
|
echo ""
|
|
echo "2. 授权以下权限 (在系统设置中勾选 GhostClient):"
|
|
echo " - 屏幕录制: 允许捕获屏幕画面"
|
|
echo " - 辅助功能: 允许控制鼠标键盘"
|
|
echo ""
|
|
echo "3. 授权后重启应用:"
|
|
echo ""
|
|
echo " pkill -f GhostClient && open /Applications/GhostClient.app"
|
|
echo ""
|
|
echo "4. 查看日志确认运行状态:"
|
|
echo ""
|
|
echo " tail -f /tmp/ghost.log"
|
|
echo ""
|
|
echo "========================================"
|
|
echo ""
|