From d613089e3acfde81a784cf81a60eb01733ad0f6e Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 26 Dec 2023 19:14:18 -0300 Subject: [PATCH] Fix mail terminal bug --- blocks.def/mail_button.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/blocks.def/mail_button.sh b/blocks.def/mail_button.sh index a6c989e..8b71355 100755 --- a/blocks.def/mail_button.sh +++ b/blocks.def/mail_button.sh @@ -1,7 +1,8 @@ #!/bin/sh case "$1" in - 1) "$TERMINAL" -e "neomutt" ;; + #1) "$TERMINAL" -e "neomutt" ;; + 1) "$TERMINAL" -e "neomutt" > ~/.cache/neomutt.log 2>&1 #3) mw -Y ;; # 3) "$TERMINAL" -e "neomutt" ;; esac