we
This commit is contained in:
parent
f4139933fc
commit
3a379c6211
|
@ -15,6 +15,8 @@ cpu() {
|
||||||
printf "^c$white^ ^b$grey^ $cpu_val"
|
printf "^c$white^ ^b$grey^ $cpu_val"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
alias notify-send="sudo -u sako DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus notify-send"
|
||||||
|
|
||||||
battery() {
|
battery() {
|
||||||
get_capacity="$(cat /sys/class/power_supply/BAT1/capacity)"
|
get_capacity="$(cat /sys/class/power_supply/BAT1/capacity)"
|
||||||
get_status="$(cat /sys/class/power_supply/BAT1/status)"
|
get_status="$(cat /sys/class/power_supply/BAT1/status)"
|
||||||
|
@ -22,10 +24,8 @@ battery() {
|
||||||
Charging) printf "^c$blue^ $get_capacity" ;;
|
Charging) printf "^c$blue^ $get_capacity" ;;
|
||||||
Discharging) if (( $get_capacity <= 20)); then
|
Discharging) if (( $get_capacity <= 20)); then
|
||||||
printf "^c$lightred^ $get_capacity"
|
printf "^c$lightred^ $get_capacity"
|
||||||
if [ [$sent_notification = false] ]; then
|
if [ "$sent_notification" = false ]; then
|
||||||
sudo -u sako \
|
notify-send -u critical "test"
|
||||||
DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus \
|
|
||||||
notify-send -u critical "Battery low" "Please charge battery"
|
|
||||||
sent_notification=true
|
sent_notification=true
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue