-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
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.
Metadata
Metadata
Assignees
Labels
No labels