Drag and drop Meters to re-arrange them.
Classic Battery Glyph
Simple icon.
Time Until
Counts up while charging, down when not.
Percent Full
Counts up while charging, down when not.
Laser Sword
Elegant and civilized.
Book Power
No button press required.
MULTIMETER allows you to customize the way your battery's status appears in your menu bar.
Your current theme is synced via iCloud to all your Macs.
How It Works
Get started in three simple steps
Install
Download Multimeter and drop it in your Applications folder. Launch it once and you're ready.
Customize
Pick from built-in meters or browse the community gallery. Mix and match to create your perfect setup.
Enjoy
See your battery status in a whole new way. Your theme syncs across all your Macs via iCloud.
Create Your Own Meters
Meters are built with HTML, CSS, and JavaScript. If you can build a webpage, you can create stunning battery indicators.
- Live Reload — See changes instantly as you code
- Full Battery API — Level, charging, health, temperature & more
- Export & Share — Package meters to share with the community
// Listen for battery updates
window.addEventListener('meterUpdate', (e) => {
const {
level, // 0.0 to 1.0
isCharging, // boolean
percentage, // 0 to 100
health, // battery health
temperature // in celsius
} = e.detail;
// Update your meter UI here
updateMeter(level, isCharging);
});