Files
karuo-ai/01_卡资(金)/金仓_存储备份/脚本/handy_unlock_settings.sh
2026-07-19 00:21:46 +08:00

8 lines
359 B
Bash
Executable File

#!/usr/bin/env bash
# 解除 Handy 配置锁定,便于在应用内改设置;改完请再跑 handy_voice_option1.sh
set -euo pipefail
SETTINGS="$HOME/Library/Application Support/com.pais.handy/settings_store.json"
chflags nouchg "$SETTINGS" 2>/dev/null || true
echo "已解锁 $SETTINGS"
echo "改完后执行: bash $(dirname "$0")/handy_voice_option1.sh"