zsh: aliases.zsh: make automake run in the background

This commit is contained in:
Thomas Preisner 2018-11-28 00:55:33 +01:00
parent 42b1d05b64
commit 80a1357651

View file

@ -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'