Replies: 1 comment 1 reply
-
I think #302 is the same issue. Some solution seems to be provided by #302 (comment), but I haven't checked it because I don't have macOS.
Does it mean you have solved the issue? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Are there any instructions for how to get macos to open oh my bash by default after installation? As of now the only way it works for me is to open a terminal window and type 'bash'. Even though echo $SHELL displays "/bin/bash".
Trying to get this to work in visual studio code as a default with my bash terminals and thinking it needs to do it on the macos itself first.
Thanks for any help. As of now I don't see any clear instruction for setting it up.
Update:
I created a .bash_profile file in my home directory with the following content:
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
Also looked to see if I had this file already which I didn't. Some suggest you may have a .profile file instead.. Didn't have that either. For now this works and gets my terminal to use oh-my-bash on both my macos and visual studio code
Beta Was this translation helpful? Give feedback.
All reactions