This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # ============================================================ | |
| # Setup script — Samuel Castro / OpenClaw + Claude Code | |
| # Gerado em 2026-05-11 a partir da configuração do MBA M1 | |
| # Correr num terminal limpo no novo Mac: | |
| # chmod +x setup-new-mac.sh && ./setup-new-mac.sh | |
| # ============================================================ | |
| set -e | |
| RED='\033[0;31m'; GREEN='\033[0;32m'; YELLOW='\033[1;33m'; NC='\033[0m' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Auto-Approve Everything | |
| // @match *://lovable.dev/* | |
| // @match *://*.lovable.app/* | |
| // @match *://claude.ai/* | |
| // @match *://chat.openai.com/* | |
| // @match *://chatgpt.com/* | |
| // @run-at document-idle | |
| // ==/UserScript== |