MULTIMETER for macOS

Customizable battery status indicator(s), in your menu bar.

Download for Mac
2:57

Drag and drop Meters to re-arrange them.

Default
Working
Movie Time

Classic Battery Glyph

Simple icon.

3:21 left

Time Until

Counts up while charging, down when not.

67%

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

Step 1

Install

Download Multimeter and drop it in your Applications folder. Launch it once and you're ready.

Step 2

Customize

Pick from built-in meters or browse the community gallery. Mix and match to create your perfect setup.

Step 3

Enjoy

See your battery status in a whole new way. Your theme syncs across all your Macs via iCloud.

For Developers

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
meter.js
// 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);
});