When I launch a terminal it starts out blank

About 2 days ago my terminal started behaving weird. When I first launch a terminal it starts out blank like this. Once I type something is and hit enter it appear as you would normally expect it to.

6de5a02bcb6edb074598b41a9adccc519893bb49.png

How do I fix this?

1 Like

https://discussion.fedoraproject.org/t/issue-with-gnome-terminal-in-fedora-30/77100?u=vgaetera

@vgaetera I read that thread and I have the same problems with the same setup. conda seems to be the culprit.

# .bashrc

# Source global definitions
if [ -f /etc/bashrc ]; then
	. /etc/bashrc
fi

# User specific environment
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
then
    PATH="$HOME/.local/bin:$HOME/bin:$PATH"
fi
export PATH

# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=

# User specific aliases and functions

# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/usr/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
    eval "$__conda_setup"
else
    if [ -f "/usr/etc/profile.d/conda.sh" ]; then
        . "/usr/etc/profile.d/conda.sh"
    else
        export PATH="/usr/bin:$PATH"
    fi
fi
unset __conda_setup
# <<< conda initialize <<<

Is it save to delete that stuff? I still plan on using conda

1 Like

It should be safe, although it may require additional actions for path modification:

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.