Polish pass

This commit is contained in:
2026-06-14 23:51:23 -05:00
parent 9005edd58c
commit f04e24b64d
3 changed files with 77 additions and 15 deletions
+12 -6
View File
@@ -61,9 +61,9 @@
"margin-bottom": 16,
"margin-left": 16,
"margin-right": 16,
"modules-left": ["gamemode", "battery", "temperature", "cpu", "memory", "network"],
"modules-left": ["gamemode", "battery", "temperature", "cpu", "memory", "network", "custom/codex-primary", "custom/codex-secondary"],
"modules-center": [],
"modules-right": ["mpris", "pulseaudio", "custom/output-device", "custom/openai-rate", "backlight", "idle_inhibitor", "clock"],
"modules-right": ["mpris", "pulseaudio", "custom/output-device", "backlight", "idle_inhibitor", "clock"],
"clock": {
"format": "{:%a %b %d %I:%M %p}",
"tooltip": false
@@ -155,13 +155,19 @@
"exec": "flatpak remote-ls --updates --app | wc -l",
"exec-if": "test $(flatpak remote-ls --updates --app | wc -l) -gt 0"
},
"custom/openai-rate": {
"custom/codex-primary": {
"interval": 15,
"return-type": "json",
"exec": "$HOME/.config/waybar/scripts/openai-rate.py",
"exec": "$HOME/.config/waybar/scripts/openai-rate.py --window primary",
"exec-if": "test -r ~/.codex/auth.json",
"max-length": 90,
"format": "{}"
"format": "5h {}"
},
"custom/codex-secondary": {
"interval": 15,
"return-type": "json",
"exec": "$HOME/.config/waybar/scripts/openai-rate.py --window secondary",
"exec-if": "test -r ~/.codex/auth.json",
"format": "W {}"
},
"custom/backup": {
"interval": 60,
+52 -5
View File
@@ -5,6 +5,7 @@ import os
import sys
import urllib.error
import urllib.request
from argparse import ArgumentParser
from pathlib import Path
@@ -107,6 +108,16 @@ def reset_text(seconds):
return f"{round(hours / 24)}d"
def usage_class(used, limit_reached=False):
if limit_reached or used >= 95:
return "critical"
if used >= 90:
return "warning"
if used >= 75:
return "regular"
return "good"
def format_window(name, window):
if not isinstance(window, dict):
return None
@@ -121,7 +132,13 @@ def format_window(name, window):
tooltip = f"{name} {label}: {used}% used"
if reset:
tooltip += f", resets in {reset}"
return {"text": f"{left}% {label}", "used": used, "tooltip": tooltip}
return {
"label": label,
"left": left,
"text": f"{left}% {label}",
"used": used,
"tooltip": tooltip,
}
def credit_text(credits):
@@ -158,11 +175,19 @@ def spend_control_text(spend_control):
return text
def main():
token, account_id, source = load_auth()
data = fetch_usage(token, account_id)
def selected_window_output(data, source, selector):
rate_limit = data.get("rate_limit") or {}
window = format_window(selector, rate_limit.get(f"{selector}_window"))
if not window:
waybar("n/a", "warning", f"No {selector} usage window returned\nsource: {source}")
klass = usage_class(window["used"], rate_limit.get("limit_reached"))
tooltip = [window["tooltip"], f"{window['left']}% remaining", f"source: {source}"]
waybar(f"{window['left']}%", klass, "\n".join(tooltip))
def combined_output(data, source):
rate_limit = data.get("rate_limit") or {}
windows = [
format_window("primary", rate_limit.get("primary_window")),
format_window("secondary", rate_limit.get("secondary_window")),
@@ -178,7 +203,7 @@ def main():
waybar("AI n/a", "warning", f"No displayable usage data\nsource: {source}")
worst_used = max(window["used"] for window in windows) if windows else 0
klass = "critical" if rate_limit.get("limit_reached") or worst_used >= 95 else "warning" if worst_used >= 90 else "good"
klass = usage_class(worst_used, rate_limit.get("limit_reached"))
tooltip = [window["tooltip"] for window in windows]
spend = spend_control_text(data.get("spend_control"))
@@ -191,5 +216,27 @@ def main():
waybar(f"AI {' '.join(parts)}", klass, "\n".join(tooltip))
def parse_args():
parser = ArgumentParser(description="Waybar Codex rate-limit widget")
parser.add_argument(
"--window",
choices=("primary", "secondary", "all"),
default="all",
help="usage window to display",
)
return parser.parse_args()
def main():
args = parse_args()
token, account_id, source = load_auth()
data = fetch_usage(token, account_id)
if args.window == "all":
combined_output(data, source)
else:
selected_window_output(data, source, args.window)
if __name__ == "__main__":
main()
+13 -4
View File
@@ -238,13 +238,22 @@ window#waybar.fullscreen #window {
color: #ebdbb2;
padding: 0 1em;
}
#custom-openai-rate {
#custom-codex-primary,
#custom-codex-secondary {
padding: 0 1em;
color: rgba(235, 219, 178, 0.2);
}
#custom-codex-primary.regular,
#custom-codex-secondary.regular {
color: #ebdbb2;
}
#custom-openai-rate.warning {
#custom-codex-primary.warning,
#custom-codex-secondary.warning {
color: #fabd2f;
}
#custom-openai-rate.critical {
color: #fb4934;
#custom-codex-primary.critical,
#custom-codex-secondary.critical {
color: #282828;
background: #fb4934;
border-radius: 8px;
}