xonsh/docs/add_to_shell.rst
Gil Forsyth 2393e63473 update docs with OS specific install instructions
* Added individual pages for Windows, Linux and OSX with install
instructions.
* Dependencies were broken out into separate rst files and `include`d to avoid a lot of repetition
* Added instructions for adding `xonsh` to `/etc/shells` to standalone
  rst file and `include`d them on OSX and Linux install pages
2016-04-06 18:31:19 -04:00

24 lines
479 B
ReStructuredText

Additional Setup
================
If you want to use xonsh as your default shell, you will first have to add xonsh to `/etc/shells`.
First ensure that xonsh is on your ``$PATH``
.. code-block:: bash
$ which xonsh
Then, as root, add xonsh to the shell list
.. code-block:: bash
# echo $(which xonsh) >> /etc/shells
To change shells, run
.. code-block:: bash
$ chsh -s $(which xonsh)
You will have to log out and log back in before the changes take effect.