From 69399b92d4932292c8adb09bbaefd606abbc7006 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Sun, 7 Aug 2022 09:48:29 -0500 Subject: [PATCH] add logo and exit --- sms/add-carrier | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/sms/add-carrier b/sms/add-carrier index 3fab064..76f179d 100755 --- a/sms/add-carrier +++ b/sms/add-carrier @@ -6,6 +6,8 @@ FILE=$HOME/patmenu2/sms/cellproviders.txt MYTEMP=/run/user/$UID/templist.txt MAIN=$HOME/patmenu2/sms/manage-sms +export MYPATH=$HOME/patmenu2 +LOGO=$MYPATH/pmlogo.png INFO=$(PARSER='OFS="\n" {print $1}' @@ -14,9 +16,17 @@ yad --title="Search Results" --width=1100 --height=500 \ --image $LOGO --window-icon=$LOGO --image-on-top --multiple \ --center --list --text="Carrier List" \ --column Carrier \ - --button=gtk-close \ + --button="Cancel":1 \ --button="Add Carrier":2 > $MYTEMP) BUT=$? + +if [ $BUT = 1 ]; then +$MAIN & +exit +elif [ $BUT = 252 ]; then +exit +fi + sed -i 's/|//g' $MYTEMP cat $MYTEMP >> $HOME/patmenu2/sms/myphonelist.txt