9 lines
212 B
Text
9 lines
212 B
Text
|
#!/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
|
||
|
}
|