10 lines
266 B
Bash
10 lines
266 B
Bash
#!/usr/bin/env sh
|
|
|
|
# This script is executed after you received a text
|
|
#You can use it to play a notification sound or forward the sms elsewhere
|
|
|
|
#The following parameters are provided:
|
|
#CONTACTNAME="$1"
|
|
#TEXT="$2"
|
|
|
|
mpv --quiet --no-video /usr/share/sxmo/notify.ogg
|