New changes

This commit is contained in:
2025-10-28 12:56:01 +01:00
parent cc00d77add
commit 764b3a7f53
6 changed files with 55 additions and 4 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/env bash
MOUSE_PATH=$(upower -e | grep -E 'hidpp_battery_[0-9]+$' | head -n 1)
if [[ -n "$MOUSE_PATH" ]] && upower -i "$MOUSE_PATH" 2>/dev/null | grep -q "present:.*yes"; then
perc=$(upower -i "$MOUSE_PATH" | awk '/percentage:/ {print $2}')
echo "MOUSE:$perc"
else
echo ""
fi