dotfiles/.config/shell/functions/ala

10 lines
222 B
Text
Raw Normal View History

2022-05-09 17:02:31 -07:00
#!/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 &
2022-05-09 17:03:41 -07:00
disown
2022-05-09 17:02:31 -07:00
exit
}