From 9b85e45eec3fb0ff1c31bab47611e118291f68d4 Mon Sep 17 00:00:00 2001 From: Michael Aquilina Date: Mon, 15 Jul 2019 17:29:41 +0100 Subject: [PATCH] Add top and htop to list of ignored commands --- auto-notify.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auto-notify.plugin.zsh b/auto-notify.plugin.zsh index c942262..2f5e27b 100644 --- a/auto-notify.plugin.zsh +++ b/auto-notify.plugin.zsh @@ -10,7 +10,7 @@ AUTO_COMMAND_START=0 export AUTO_NOTIFY_THRESHOLD=10 # List of commands/programs to ignore sending notifications for export AUTO_NOTIFY_IGNORE=( - "vim" "nvim" "emacs" "less" "more" "man" "tig" "watch" "git commit" + "vim" "nvim" "emacs" "less" "more" "man" "tig" "watch" "git commit" "top" "htop" )