2023-06-12 21:23:01 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Copyright (C) 2023-present Fewtarius (https://github.com/fewtarius)
|
|
|
|
|
|
|
|
. /etc/profile
|
|
|
|
|
2023-06-12 21:28:22 +00:00
|
|
|
AUDIOTEST=$(ps -ef | grep [p]ulseaudio)
|
|
|
|
if [ ! $? = 0 ]
|
|
|
|
then
|
|
|
|
PLAYCMD="aplay -q"
|
|
|
|
else
|
|
|
|
PLAYCMD="paplay"
|
|
|
|
fi
|
2023-06-12 21:23:01 +00:00
|
|
|
|
|
|
|
case $1 in
|
|
|
|
-b)
|
|
|
|
espeak --stdout "$(battery_percent)%" | ${PLAYCMD}
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
espeak --stdout "$*" | ${PLAYCMD}
|
|
|
|
;;
|
|
|
|
esac
|