Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions apps/claudius/claudius.star
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
load("render.star", "render")

def main():
return render.Root(
child = render.Column(
main_align = "space_evenly",
cross_align = "center",
expanded = True,
children = [
render.Text("Claudius", font = "tb-8", color = "#d97757"),
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Remove redundant font = "tb-8" as it is the default for 1x and allows automatic font selection for 2x.

Suggested change
render.Text("Claudius", font = "tb-8", color = "#d97757"),
render.Text("Claudius", color = "#d97757"),
References
  1. The default font for render.Text is automatically selected based on the display mode (1x/2x), so explicitly setting the font parameter is unnecessary if the default is desired.

render.Text("Waiting for", font = "CG-pixel-3x5-mono", color = "#fff"),
render.Text("Mac app", font = "CG-pixel-3x5-mono", color = "#888"),
],
),
)
Binary file added apps/claudius/claudius.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions apps/claudius/manifest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
id: claudius
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Missing required preview image claudius.webp in the app directory.

References
  1. Every app must contain a preview image in the app directory which should have the same name as the app directory with a .webp extension. (link)

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would recommend adding the preview image as the AI suggests.

name: Claudius
summary: Live Claude usage stats
desc: Companion display for Claudius, the macOS menu bar app that monitors Claude Code and Claude.ai usage. Install Claudius from github.com/NSLuke/Claudius and point it at your Tronbyt — it pushes live cost, token, session, and weekly usage frames to this app's installation. Without the Mac companion installed, this app shows a placeholder.
author: NSLuke
fileName: claudius.star
packageName: claudius
recommendedInterval: 300
category: utilities
tags:
- claude
- ai
- usage
- developer
- mac