mirror of
https://github.com/AquaMorph/dotfiles.git
synced 2025-04-29 17:25:34 +00:00
12 lines
307 B
Bash
Executable File
12 lines
307 B
Bash
Executable File
#! /bin/bash
|
|
|
|
mouseState=$(upower -i /org/freedesktop/UPower/devices/battery_hidpp_battery_0)
|
|
batteryPercentage=$(echo $mouseState | grep percentage | grep -Po '\d+%')
|
|
charging=$(echo $mouseState | grep 'state: charging')
|
|
|
|
if [ ! -z "$charging" ]; then
|
|
echo Charging
|
|
else
|
|
echo $batteryPercentage
|
|
fi
|