From aefa8cd753c982da2aa542f5ed6572c1decb807a Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Fri, 30 May 2025 19:42:10 -0700 Subject: [PATCH] shell(ala): allow passing an argument to support launching other processes --- .config/shell/functions/ala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/shell/functions/ala b/.config/shell/functions/ala index 41664a8..a9055b3 100644 --- a/.config/shell/functions/ala +++ b/.config/shell/functions/ala @@ -3,7 +3,7 @@ # put in another terminal for some reason and you want alacritty. ala() { - nohup alacritty > /dev/null 2>&1 & + nohup "${@:-alacritty}" > /dev/null 2>&1 & disown exit }