Add a shortcut to list message from contact menu

Signed-off-by: Stacy Harper <contact@stacyharper.net>
Signed-off-by: Maarten van Gompel <proycon@anaproy.nl>
This commit is contained in:
Stacy Harper 2021-05-15 18:45:21 +02:00 committed by Maarten van Gompel
parent 2c47c5e55f
commit 59fe5977b4

View file

@ -103,14 +103,17 @@ editcontact() {
showcontact() {
number="$(echo "$1" | cut -d" " -f1)"
name="$(echo "$1" | cut -d" " -f2)"
ENTRIES="$(printf %b "$icon_ret Cancel\n$icon_msg Send a Message\n$icon_phn Call\n$icon_edt Edit\n$icon_del Delete")"
ENTRIES="$(printf %b "$icon_ret Cancel\n$icon_lst List Messages\n$icon_msg Send a Message\n$icon_phn Call\n$icon_edt Edit\n$icon_del Delete")"
PICKED="$(
echo "$ENTRIES" |
dmenu -c -l 5 -p "$icon_usr $name"
)"
if echo "$PICKED" | grep -q "Send a Message"; then
if echo "$PICKED" | grep -q "List Messages"; then
sxmo_modemtext.sh tailtextlog "$number"
exit
elif echo "$PICKED" | grep -q "Send a Message"; then
sxmo_modemtext.sh sendtextmenu "$number"
exit
elif echo "$PICKED" | grep -q "Call"; then