Skip to content

Instantly share code, notes, and snippets.

#!/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")"
@nickojs
nickojs / gist:1dccb26fe7bd343bdd8a64dc64a38298
Last active July 5, 2026 21:36
(wip) claude usage greasemonkey script
// ==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