13 lines
303 B
Bash
Executable File
13 lines
303 B
Bash
Executable File
#! /bin/sh
|
|
|
|
## indexes mu depending on whether emacs mu4e is running
|
|
|
|
## assume the mu server is only started by mu4e
|
|
if pgrep -fx '/usr/bin/mu server' > /dev/null; then
|
|
echo indexing mu through emacs
|
|
emacsclient -e '(mu4e-update-index)' > /dev/null
|
|
else
|
|
echo indexing mu natively
|
|
mu index
|
|
fi
|