瀏覽代碼

last run file hidden

tags/v3.1
Luke Smith 5 年之前
父節點
當前提交
f0abb7190a
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: 4C50B54A911F6252
共有 2 個檔案被更改,包括 3 行新增2 行删除
  1. +1
    -0
      .gitignore
  2. +2
    -2
      etc/mailsync.sh

+ 1
- 0
.gitignore 查看文件

@@ -6,4 +6,5 @@ personal.muttrc
thunderbird/
autoconf/log
etc/mailsynclastrun
etc/.mailsynclastrun
.dl

+ 2
- 2
etc/mailsync.sh 查看文件

@@ -32,7 +32,7 @@ pkill -RTMIN+12 i3blocks
for account in $(ls ~/.mail)
do
#List unread messages newer than last mailsync and count them
newcount=$(find ~/.mail/"$account"/INBOX/new/ -type f -newer ~/.config/mutt/etc/mailsynclastrun 2> /dev/null | wc -l)
newcount=$(find ~/.mail/"$account"/INBOX/new/ -type f -newer ~/.config/mutt/etc/.mailsynclastrun 2> /dev/null | wc -l)
if [ "$newcount" -gt "0" ]
then
notify "$account" "$newcount" &
@@ -41,4 +41,4 @@ done
notmuch new

#Create a touch file that indicates the time of the last run of mailsync
touch ~/.config/mutt/etc/mailsynclastrun
touch ~/.config/mutt/etc/.mailsynclastrun

Loading…
取消
儲存