8 lines
212 B
Bash
Executable file
8 lines
212 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 &
|
|
exit
|
|
}
|