refactor: rename to openclaw
This commit is contained in:
@@ -1,12 +1,13 @@
|
||||
#!/data/data/com.termux/files/usr/bin/bash
|
||||
# Moltbot OAuth Sync Widget
|
||||
# Syncs Claude Code tokens to Moltbot on l36 server
|
||||
# OpenClaw OAuth Sync Widget
|
||||
# Syncs Claude Code tokens to OpenClaw on l36 server
|
||||
# Place in ~/.shortcuts/ on phone for Termux:Widget
|
||||
|
||||
termux-toast "Syncing Moltbot auth..."
|
||||
termux-toast "Syncing OpenClaw auth..."
|
||||
|
||||
# Run sync on l36 server
|
||||
RESULT=$(ssh l36 '/home/admin/moltbot/scripts/sync-claude-code-auth.sh' 2>&1)
|
||||
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
|
||||
@@ -14,10 +15,10 @@ if [ $EXIT_CODE -eq 0 ]; then
|
||||
EXPIRY=$(echo "$RESULT" | grep "Token expires:" | cut -d: -f2-)
|
||||
|
||||
termux-vibrate -d 100
|
||||
termux-toast "Moltbot synced! Expires:${EXPIRY}"
|
||||
termux-toast "OpenClaw synced! Expires:${EXPIRY}"
|
||||
|
||||
# Optional: restart moltbot service
|
||||
ssh l36 'systemctl --user restart moltbot' 2>/dev/null
|
||||
# Optional: restart openclaw service
|
||||
ssh "$SERVER" 'systemctl --user restart openclaw' 2>/dev/null
|
||||
else
|
||||
termux-vibrate -d 300
|
||||
termux-toast "Sync failed: ${RESULT}"
|
||||
|
||||
Reference in New Issue
Block a user