Skip to content

Instantly share code, notes, and snippets.

View ABIvan-Tech's full-sized avatar
😉

ABIvan-Tech

😉
View GitHub Profile
@ABIvan-Tech
ABIvan-Tech / statusline.sh
Last active July 3, 2026 14:39
Antigravity CLI custom status bar
#!/bin/bash
# Read JSON payload from stdin
payload=$(cat)
# Extract basic model information
model=$(echo "$payload" | jq -r '.model.display_name // "N/A"')
# Extract token usage data
input=$(echo "$payload" | jq -r '.context_window.total_input_tokens // 0')