I've got the following two lines (they are in fact the only two lines) in my ~/.bashrc file:
Neither command seems to take effect, even after completely logging out and then logging back in (though they do seem to work once i3 has launched). How do I get them to work right out of the gate after I first log in after starting the system?
Does it matter if you use single quotes (') or double quotes (")? (I didn't think it did.)
Should I create a script instead of using the second line?
===Updated to add:
Not sure if this helps, but here is some terminal output:
Regarding the second line: I've got the i3 tiling window manager installed. I want the ability to sometimes start the X windows manager (via
Code:
alias ls='ls -G' # to enable colorized output of the ls command
alias startie='xinit /usr/local/bin/i3' # shortcut to launch i3
Does it matter if you use single quotes (') or double quotes (")? (I didn't think it did.)
Should I create a script instead of using the second line?
===Updated to add:
Not sure if this helps, but here is some terminal output:
Code:
$ echo $SHELL
/usr/local/bin/bash
$ echo $0
/usr/local/bin/bash
$ ps $$
PID TT STAT TIME COMMAND
891 1 Ss 0:00.03 /usr/local/bin/bash -i
Regarding the second line: I've got the i3 tiling window manager installed. I want the ability to sometimes start the X windows manager (via
startx
) or sometimes just launch i3 which is why I haven't included /usr/local/bin/i3 in my .xinitrc file. Also, I always fat finger "i3" as "ie", hence the spelling of the alias.