dotfiles/conf.d/notmuch/pre-new

22 lines
521 B
Plaintext
Raw Normal View History

2021-02-27 00:30:26 +00:00
#!/bin/bash
# File : pre-new
# Author : Jeff LANCE <email@jefflance.me>
# Date : 04.05.2020
# Last Modified Date: 26.02.2021
# Last Modified By : Jeff LANCE <email@jefflance.me>
ASTROID_BIN=$(which astroid)
echo "[Begin notmuch]: $(basename $0) script"
if [ "x${DISPLAY}" != "x" ]; then
2021-02-27 00:36:27 +00:00
logger -t notmuch "Astroid polling start requested during pre-new hook";
2021-02-27 00:30:26 +00:00
$ASTROID_BIN --start-polling 2>&1 >/dev/null
fi
echo "[End notmuch]: $(basename $0) script"
exit 0
# vim:ft=sh