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.
25 lines
492 B
25 lines
492 B
#!/usr/bin/env sh |
|
|
|
# shellcheck source=scripts/core/sxmo_common.sh |
|
. "$(dirname "$0")/sxmo_common.sh" |
|
|
|
if pn valid "$1"; then |
|
printf %s "$1" |
|
exit |
|
fi |
|
|
|
REFORMATTED="$(pn find ${DEFAULT_COUNTRY:+-c "$DEFAULT_COUNTRY"} "$1")" |
|
if pn valid "$REFORMATTED"; then |
|
printf %s "$REFORMATTED" |
|
exit |
|
fi |
|
|
|
notify-send "\"$1\" is not a valid phone number" |
|
|
|
PICKED="$(printf "Ok\nUse as it is\n" | sxmo_dmenu.sh -p "Invalid Number")" |
|
if [ "$PICKED" = "Use as it is" ]; then |
|
printf %s "$1" |
|
exit |
|
fi |
|
|
|
exit 1
|
|
|