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
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| INSTALL_DIR="$HOME/.omni-ecosystem/omni-cli" | |
| if [ -d "$INSTALL_DIR" ]; then | |
| echo "omni-cli already exists at $INSTALL_DIR, pulling latest..." | |
| git -C "$INSTALL_DIR" pull | |
| else | |
| mkdir -p "$(dirname "$INSTALL_DIR")" |
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 Claude-O-Meter | |
| // @namespace https://github.com/claude-o-meter | |
| // @version 0.9.2 | |
| // @description A tiny, toggleable overlay on claude.ai showing your current session AND weekly usage, and when each resets. Free & open source — reads only the usage data your own logged-in session already has access to. No API keys, no scraping, no exfiltration. | |
| // @author you | |
| // @match https://claude.ai/* | |
| // @icon https://claude.ai/favicon.ico | |
| // @grant none | |
| // @run-at document-idle |