16 lines
780 B
Text
16 lines
780 B
Text
# where your maildir folders live
|
|
MBOX_ROOT=${HOME}/lib/mail/zoho
|
|
# where runtime files live (probably this git repo for simplicity)
|
|
TARO_LIB=${PWD}
|
|
# where attachments are saved to
|
|
TARO_DOWNLOADS=${HOME}/tmp
|
|
|
|
# name of your uxnemu executable; it must be in PATH; i copy mine to "taro" so it gets the _NET_WM_CLASS=taro
|
|
UXN_EMU=taro
|
|
|
|
# any custom env you want to set for reader/compose wins
|
|
TARO_ENV="PINENTRY_USER_DATA=taro"
|
|
|
|
# reader and compose progs - I use st, you may use your own terminal although the command line options may differ so read the manual
|
|
READER_PROG="${TARO_ENV} TARO_DOWNLOADS=${TARO_DOWNLOADS} LESSKEYIN=${TARO_LIB}/lesskey st -c taro -n taro -t taro-reader -e ${TARO_LIB}/taro-reader"
|
|
COMPOSE_PROG="${TARO_ENV} st -c taro -n taro -t taro-compose -e mcom"
|