waybar: check for BAT0 and BAT1 in check-battery
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run

This commit is contained in:
Aly Raffauf 2024-08-07 23:34:26 -04:00
parent 23c783cfc5
commit 02aa2e13d5

View file

@ -87,12 +87,19 @@ in {
"battery" = let "battery" = let
checkBattery = pkgs.writeShellScript "check-battery" '' checkBattery = pkgs.writeShellScript "check-battery" ''
bat=/sys/class/power_supply/BAT0 if [ -d /sys/class/power_supply/BAT0 ]; then
BAT=/sys/class/power_supply/BAT0
elif [ -d /sys/class/power_supply/BAT1 ]; then
BAT=/sys/class/power_supply/BAT1
else
echo "No battery found."
exit 1
fi
CRIT=''${1:-10} CRIT=''${1:-10}
NOTIFY=${lib.getExe' pkgs.libnotify "notify-send"} NOTIFY=${lib.getExe' pkgs.libnotify "notify-send"}
stat=$(${lib.getExe' pkgs.coreutils "cat"} $bat/status) stat=$(${lib.getExe' pkgs.coreutils "cat"} $BAT/status)
perc=$(${lib.getExe' pkgs.coreutils "cat"} $bat/capacity) perc=$(${lib.getExe' pkgs.coreutils "cat"} $BAT/capacity)
if [[ $perc -le $CRIT ]] && [[ $stat == "Discharging" ]]; then if [[ $perc -le $CRIT ]] && [[ $stat == "Discharging" ]]; then
$NOTIFY --urgency=critical --icon=dialog-error "Battery Critical" "Current charge: $perc%". $NOTIFY --urgency=critical --icon=dialog-error "Battery Critical" "Current charge: $perc%".