Really nice project!
We could integrate a dialog asking what snippets to append to ~/.bash_aliases I also have some snippets left.
Using this method you can create a dialog:
while true; do
read -p "Do you want to do that? (y/n) " yn
case $yn in
[Yy]* ) echo "true" && exit;;
[Nn]* ) echo "no" && exit;;
* ) echo "Please answer yes or no.";;
esac
done
We could leave out the base file completely, because it would make sense to reuse some shortcuts. For example "update" for every distro.
Really nice project!
We could integrate a dialog asking what snippets to append to ~/.bash_aliases I also have some snippets left.
Using this method you can create a dialog:
We could leave out the base file completely, because it would make sense to reuse some shortcuts. For example "update" for every distro.