1
0
mirror of https://github.com/km4ack/patmenu2.git synced 2025-05-19 08:10:12 -07:00

update paths for v0.12

This commit is contained in:
KM4ACK 2021-10-29 20:24:09 -05:00
parent 5f7015b926
commit 8c7060c084

View File

@ -5,9 +5,10 @@
MYPATH=$HOME/patmenu2 MYPATH=$HOME/patmenu2
LOGO=$MYPATH/pmlogo.png LOGO=$MYPATH/pmlogo.png
MAIN=$MYPATH/./catalog MAIN=$MYPATH/./catalog
PATCONFIG=XDG_CONFIG_HOME/pat/config.json
#get callsign from pat config file #get callsign from pat config file
CALLSIGN=$(cat $HOME/.wl2k/config.json | grep -m 1 mycall | sed 's/\"mycall\": \"//' | sed 's/\",//' | sed -e 's/^\s*//' | tr '[:lower:]' '[:upper:]') CALLSIGN=$(cat $PATCONFIG | grep -m 1 mycall | sed 's/\"mycall\": \"//' | sed 's/\",//' | sed -e 's/^\s*//' | tr '[:lower:]' '[:upper:]')
#COMPOSE EMAIL Function #COMPOSE EMAIL Function
@ -25,7 +26,7 @@ TODAY1=$(date)
NEW_UUID=$(cat /dev/urandom | tr -dc 'A-Z0-9' | fold -w 12 | head -n 1) NEW_UUID=$(cat /dev/urandom | tr -dc 'A-Z0-9' | fold -w 12 | head -n 1)
#add .b2f to end of random number for new file name #add .b2f to end of random number for new file name
NEW_FILE=$HOME/.wl2k/mailbox/$CALLSIGN/out/$NEW_UUID".b2f" NEW_FILE=$HOME/.local/share/pat/mailbox/$CALLSIGN/out/$NEW_UUID".b2f"
#create new file #create new file
touch $NEW_FILE touch $NEW_FILE