Alias remover added

This commit is contained in:
Fr4nz D13trich 2025-12-26 22:34:10 +01:00
parent 5e26f8e43b
commit 4a6741f581

View file

@ -290,7 +290,17 @@ remove_helium() {
rm -rf $INSTALL_PATH
if [ -f "$LAUNCHER_PATH/$APP_NAME.desktop" ] ; then
rm $LAUNCHER_PATH/$APP_NAME.desktop
fi
if [ -f "$HOME/.zshrc" ] ; then
sed -i "s|$ALIAS|d|" $HOME/.zshrc
elif [ -f "$HOME/.bashrc" ] ; then
sed -i "s|$ALIAS|d|" $HOME/.bashrc
fi
echo -e "\n ${RED}$APP_NAME_LONG removed!${CRS}"
exit