dotfiles/conf.d/notmuch/pre-new

21 lines
395 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
2021-03-01 21:41:37 +00:00
# Last Modified Date: 01.03.2021
2021-02-27 00:30:26 +00:00
# Last Modified By : Jeff LANCE <email@jefflance.me>
2021-03-01 21:41:37 +00:00
2021-02-27 00:30:26 +00:00
ASTROID_BIN=$(which astroid)
2021-03-01 21:41:37 +00:00
# purging trash
notmuch search --output=files --format=text0 \
-- tag:deleted date:...7d | xargs -0 --no-run-if-empty rm
2021-02-27 00:30:26 +00:00
exit 0
2021-03-01 21:41:37 +00:00
2021-02-27 00:30:26 +00:00
# vim:ft=sh