You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# This was mostly taken from sxmo:
|
|
|
|
# https://git.sr.ht/~mil/sxmo-utils/tree/1.3.2/item/scripts/modem/sxmo_modemmonitor.sh#L181-205
|
|
|
|
#
|
|
|
|
# Although the proccess for managing calls etc is a bit simpler IMO
|
|
|
|
|
|
|
|
export DISPLAY=:0.0
|
|
|
|
|
|
|
|
# Monitor for incoming calls
|
|
|
|
dbus-monitor --system "interface='org.freedesktop.ModemManager1.Modem.Voice',type='signal',member='CallAdded'" | \
|
|
|
|
while read -r line; do
|
|
|
|
echo "$line" | grep -E "^signal" && checkCall
|
|
|
|
done &
|
|
|
|
|
|
|
|
# Monitor for incoming texts
|
|
|
|
dbus-monitor --system "interface='org.freedesktop.ModemManager1.Modem.Messaging',type='signal',member='Added'" | \
|
|
|
|
while read -r line; do
|
|
|
|
notify-send "Added (SMS)"
|
|
|
|
echo "$line" | grep -E "^signal" && checkSMS
|
|
|
|
done &
|
|
|
|
|
|
|
|
# Monitor for finished calls
|
|
|
|
dbus-monitor --system "interface='org.freedesktop.DBus.Properties',member='PropertiesChanged',arg0='org.freedesktop.ModemManager1.Call'" | \
|
|
|
|
while read -r line; do
|
|
|
|
echo "$line" | grep -E "^signal" && checkCall
|
|
|
|
done &
|
|
|
|
|
|
|
|
wait
|
|
|
|
wait
|
|
|
|
wait
|
|
|
|
|