Initial commit: Claude Status Cinnamon applet

Add Cinnamon panel applet that displays Claude Pro subscription usage and limits with configurable refresh interval and colors.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
ksmith
2026-01-21 19:02:03 -07:00
commit 8b5d2f4283
5 changed files with 506 additions and 0 deletions

22
install.sh Executable file
View File

@@ -0,0 +1,22 @@
#!/bin/bash
# Install/update the Claude Status applet
APPLET_DIR="$HOME/.local/share/cinnamon/applets/claude-status@ksmith"
# Create directory if it doesn't exist
mkdir -p "$APPLET_DIR"
# Copy files
cp metadata.json "$APPLET_DIR/"
cp applet.js "$APPLET_DIR/"
cp settings-schema.json "$APPLET_DIR/"
echo "Applet files copied to $APPLET_DIR"
echo ""
echo "To activate changes:"
echo "1. Press Alt+F2"
echo "2. Type: r"
echo "3. Press Enter"
echo ""
echo "Or restart your session."