I have two features suggestions.
- It would be really nice to add a feature such that the script only runs the first terminal you open and doesn't on the rest. I have done that using a bash script here, but a default feature would be nice too:
source ~/.bashrc
#!/bin/bash
count=$(ps -ef | grep -vw "grep" | grep -w -c "alacritty")
if [ "$count" -eq 1 ]; then
boom
fi
# boom here just as alias to run the desired anifetch command defined in .bashrc
- It would be really nice if I did not have to stop the processes each time using
CTRL + C and I could just start typing and it would stop the process immediately.
I have two features suggestions.
CTRL + Cand I could just start typing and it would stop the process immediately.