From 1f07aada5307cfea13ff85c39264d16accac5d77 Mon Sep 17 00:00:00 2001 From: Thomas Forgione Date: Mon, 19 Nov 2018 10:11:58 +0100 Subject: [PATCH] Nohup split --- zsh/functions.zsh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/zsh/functions.zsh b/zsh/functions.zsh index e88c794..0f18fc0 100644 --- a/zsh/functions.zsh +++ b/zsh/functions.zsh @@ -125,3 +125,9 @@ if [ $? -eq 0 ]; then fi +command -v alacritty > /dev/null 2>&1 +if [ $? -eq 0 ]; then + s() { + nohup alacritty > /dev/null 2>&1 + } +fi