6 lines
310 B
Bash
6 lines
310 B
Bash
#!/usr/bin/env sh
|
|
|
|
# This script is executed when sxmo_batterymonitor detects a battery capacity below the set threshold
|
|
# You can use it to shutdown, play a notification sound, send a message, etc
|
|
|
|
mpv --no-video /usr/share/sxmo/notify.ogg >/dev/null && notify-send \"battery low\" && sxmo_vibratepine 1500 &
|