From 80a13576510b35ca01ea0ac46a06086a71353aa9 Mon Sep 17 00:00:00 2001 From: Thomas Preisner Date: Wed, 28 Nov 2018 00:55:33 +0100 Subject: [PATCH] zsh: aliases.zsh: make automake run in the background --- zsh/aliases.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/aliases.zsh b/zsh/aliases.zsh index f40d86c..6c3a771 100644 --- a/zsh/aliases.zsh +++ b/zsh/aliases.zsh @@ -41,7 +41,7 @@ fi alias irc='ssh -t irc tmux attach' # expand aliases when using sudo alias sudo='sudo ' -alias automake='while true; do inotifywait -r -e modify . && make; done;' +alias automake='{ while true; do inotifywait -r -e modify . && make; done; } &' # ===== sp aliases alias xterm='xterm -fa terminus -fs 8'