dotfiles/.config/shell/functions/ala
2022-05-09 17:03:41 -07:00

9 lines
222 B
Bash
Executable file

#!/bin/bash
# Re-open your shell in alacritty and exit the current shell. Good if you're
# put in another terminal for some reason and you want alacritty.
ala() {
nohup alacritty > /dev/null 2>&1 &
disown
exit
}