dots


dots / config / .local / bin
xxwhirlpool  ·  2026-03-10

batnotif

 1#!/usr/bin/env bash
 2
 3battery=$(upower -i "$(upower -e | grep 'BAT')" | awk '/percentage/ {print $NF}' | sed 's/%//g')
 4batteryint=$((battery))
 5
 6if (( "$batteryint" < "20")); then
 7	notify-send "battery is under 20%!"
 8elif (( "$batteryint" < "10")); then
 9	notify-send "battery is under 10%!!! charge ur laptop!!!!"
10elif (( "$batteryint" < "5")); then
11	notify-send "battery is under 5%!!!!! CHARGE LAPTOP!!!!!!!!!"
12fi