A Windows taskbar widget to track your Red Bull consumption.
- Visual tracking - See your Red Bull cans displayed in the taskbar
- Easy interaction - Right-click to add, left-click to remove
- Persistent count - Your count is saved locally
- Configurable - Choose between default and sugar-free can styles
- Starts with Windows - Always ready when you need it
- Download the latest release from Releases
- Run
RedBullTracker.exe - The widget will appear in your taskbar
- Right-click the widget to add a Red Bull
- Left-click the widget to remove a Red Bull
- Hover over the widget to see your current count
Configuration is stored in %LOCALAPPDATA%\RedBullTracker\config.json:
{
"canType": "default",
"apiUrl": null,
"useOnlineMode": false,
"startWithWindows": true
}| Option | Description | Values |
|---|---|---|
canType |
Which can image to display | "default", "sugarfree" |
apiUrl |
API URL for online mode (future) | URL string or null |
useOnlineMode |
Enable online sync (future) | true, false |
startWithWindows |
Launch on Windows startup | true, false |
This is a monorepo. The widget lives in apps/widget/; the API will live in apps/api/ (in progress).
# Clone with submodules
git clone --recursive https://github.com/user/redbull-tracker.git
cd redbull-tracker
# Build
dotnet build -p:Platform=x64
# Run
dotnet run --project apps/widget/RedBullTracker.csproj -p:Platform=x64- Windows 10/11
- .NET 8.0 Runtime (included in self-contained builds)
MIT