Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1 KB

README.md

File metadata and controls

39 lines (30 loc) · 1 KB

Glaxy Buds Battery Status

A Gnome Shell Extension to display the battery levels of your Galaxy-buds in the top bar.

forked from Airpods Battery Status

Requirements

Install (https://github.com/JojiiOfficial/LiveBudsCli).

Make a /etc/systemd/system/buds-daemon.service for a systemd based system.

[Unit]
Description=Galaxy-Buds Battery Monitor

[Service]
ExecStart=[path/to/earbuds(from LiveBudsCli)] status -o json > /tmp/budstatus.out
Restart=always
RestartSec=2

[Install]
WantedBy=default.target

Or make a shell script for a non-systemd system.

#!/bin/sh

while true; do
  [path/to/earbuds(from LiveBudsCli)] status -o json > /tmp/budstatus.out;
  sleep 2;
done

Installation

$ mkdir -p ~/.local/share/gnome-shell/extensions/[email protected]
$ cd ~/.local/share/gnome-shell/extensions/[email protected]
$ git clone https://github.com/Ryu-ga/gnome-buds-battery-status .