mirror of
https://github.com/clawdbot/clawdbot.git
synced 2026-01-31 11:27:45 +01:00
26 lines
797 B
Bash
26 lines
797 B
Bash
#!/data/data/com.termux/files/usr/bin/bash
|
|
# OpenClaw OAuth Sync Widget
|
|
# Syncs Claude Code tokens to OpenClaw on l36 server
|
|
# Place in ~/.shortcuts/ on phone for Termux:Widget
|
|
|
|
termux-toast "Syncing OpenClaw auth..."
|
|
|
|
# Run sync on l36 server
|
|
SERVER="${OPENCLAW_SERVER:-${CLAWDBOT_SERVER:-l36}}"
|
|
RESULT=$(ssh "$SERVER" '/home/admin/openclaw/scripts/sync-claude-code-auth.sh' 2>&1)
|
|
EXIT_CODE=$?
|
|
|
|
if [ $EXIT_CODE -eq 0 ]; then
|
|
# Extract expiry time from output
|
|
EXPIRY=$(echo "$RESULT" | grep "Token expires:" | cut -d: -f2-)
|
|
|
|
termux-vibrate -d 100
|
|
termux-toast "OpenClaw synced! Expires:${EXPIRY}"
|
|
|
|
# Optional: restart openclaw service
|
|
ssh "$SERVER" 'systemctl --user restart openclaw' 2>/dev/null
|
|
else
|
|
termux-vibrate -d 300
|
|
termux-toast "Sync failed: ${RESULT}"
|
|
fi
|