And now I have a problem. Of course.
It seemed that tcsh was in general a "bad thing" so I thought I'd give bash a try. (I'm running 10.2 so no fink magic was needed.)
I set up a .bashrc containing my prompt information, and here it is:
PS1='[\h:\w] \u\$ '
export PS1
When it works, the prompt looks like:
[hostname:current dir] username$
(or # instead of $ if root)
But it doesn't work when I make a new term window. It only works if I then type "bash". Why not ? I added +x permission to user, group, and other and it still doesn't work, so permissions are not the problem. (Of course read is enabled.)
Edit: After some trial and error, what turned out to be the trick was to put it in ~/.profile...
It seemed that tcsh was in general a "bad thing" so I thought I'd give bash a try. (I'm running 10.2 so no fink magic was needed.)
I set up a .bashrc containing my prompt information, and here it is:
PS1='[\h:\w] \u\$ '
export PS1
When it works, the prompt looks like:
[hostname:current dir] username$
(or # instead of $ if root)
But it doesn't work when I make a new term window. It only works if I then type "bash". Why not ? I added +x permission to user, group, and other and it still doesn't work, so permissions are not the problem. (Of course read is enabled.)
Edit: After some trial and error, what turned out to be the trick was to put it in ~/.profile...