shell(ala): allow passing an argument to support launching other processes

This commit is contained in:
PowerUser64 2025-05-30 19:42:10 -07:00
parent aea157ff18
commit aefa8cd753

View file

@ -3,7 +3,7 @@
# put in another terminal for some reason and you want alacritty. # put in another terminal for some reason and you want alacritty.
ala() { ala() {
nohup alacritty > /dev/null 2>&1 & nohup "${@:-alacritty}" > /dev/null 2>&1 &
disown disown
exit exit
} }