config/scripts/run_mutt.sh

12 lines
159 B
Bash
Raw Normal View History

#!/bin/zsh
is_running=`ps aux| grep gpg-agent| grep -v grep`
if [ $is_running ] ; then
echo "gpg is running";
else
env=`./run_gpg.sh`
source $env
fi
mutt