From 6c8f54fc2ffd72623d526c77d6880b25d85a7207 Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Tue, 24 May 2022 11:00:03 +0300 Subject: [PATCH] refac(scripts/him): search unseen using imap --- scripts/him.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/him.sh b/scripts/him.sh index e33845e..1736087 100755 --- a/scripts/him.sh +++ b/scripts/him.sh @@ -16,7 +16,7 @@ case $1 in a=0 for acc in $(NO_COLOR=1 $bin accounts | grep imap | awk '{ print $1 }') do - a=$((a+$($bin -a "$acc" list | grep '✷' | wc -l))) + a=$((a+$($bin -a "$acc" search unseen | grep '✷' | wc -l))) done echo $a ;; @@ -31,7 +31,7 @@ case $1 in ;; "mark-read") - for id in $(NO_COLOR=1 $bin -a $2 list -s 20 | grep '✷'| awk '{ print $1 }') + for id in $(NO_COLOR=1 $bin -a $2 search unseen | grep '✷'| awk '{ print $1 }') do $bin -a $2 flag add $id seen done