From 3ff343a78701d6ba917ee7b0a7d5d3548fecd081 Mon Sep 17 00:00:00 2001 From: Thomas Forgione Date: Mon, 19 Nov 2018 10:13:48 +0100 Subject: [PATCH] Disown --- zsh/functions.zsh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zsh/functions.zsh b/zsh/functions.zsh index 0f18fc0..e4252c7 100644 --- a/zsh/functions.zsh +++ b/zsh/functions.zsh @@ -128,6 +128,7 @@ fi command -v alacritty > /dev/null 2>&1 if [ $? -eq 0 ]; then s() { - nohup alacritty > /dev/null 2>&1 + alacritty > /dev/null 2>&1 & + disown } fi