From 9a43b35125a5bf6d5a703a37ce2cf1c729ba11d4 Mon Sep 17 00:00:00 2001 From: Martinez Date: Sat, 22 Sep 2018 17:33:49 +0200 Subject: [PATCH] add notify command --- etc/zsh/zshrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index cb09c7f..397e153 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -33,6 +33,10 @@ autoload -U edit-command-line zle -N edit-command-line bindkey '\C-e' edit-command-line +notify () { + notify-send "Task finished" "Terminal $(tty) is idle." +} + mkcd () { mkdir -p "$1" && cd "$1" }