2019-02-15 11:48:35 +01:00
|
|
|
# Wish
|
|
|
|
|
2019-02-18 13:33:38 +01:00
|
|
|
A customizable bash prompt.
|
|
|
|
|
|
|
|
# Installation
|
|
|
|
|
|
|
|
## One step Installation
|
|
|
|
|
|
|
|
`curl https://gitlab.com/ceda_ei/wish/raw/master/install.sh | bash`
|
|
|
|
|
|
|
|
## Manual Installation
|
|
|
|
|
|
|
|
+ `cd ~/.config/`
|
|
|
|
+ `git clone https://gitlab.com/ceda_ei/wish.git`
|
|
|
|
+ Add the following lines to ~/.bashrc
|
|
|
|
|
2019-02-18 13:51:52 +01:00
|
|
|
```bash
|
2019-02-18 13:33:38 +01:00
|
|
|
WISH_PLUGINS=(exit_code_smiley bg_jobs date path newline vcs)
|
|
|
|
WISH_THEME=plain
|
|
|
|
source ~/.config/wish/wish.sh
|
|
|
|
```
|
|
|
|
|
2019-02-22 14:27:16 +01:00
|
|
|
# Wiki
|
2019-02-18 13:33:38 +01:00
|
|
|
|
2019-02-22 14:27:16 +01:00
|
|
|
[Check the wiki for details about customization and plugins.](https://gitlab.com/ceda_ei/wish/wikis/home)
|