fancy-prompt Build status

fancy-prompt is an improved shell prompt with several useful features.

Screenshots

Screenshots of fancy-prompt

Features

Installation

fancy-prompt is a command which generates prompt output directly. First, install the fancy-prompt binary itself:

cargo install fancy-prompt

Then, configure fancy-prompt for your shell:

zsh

function shell_prompt_precmd () { PROMPT=`fancy-prompt --prompt-escape zsh $?` } precmd_functions+=(shell_prompt_precmd)

bash

export PROMPT_COMMAND="__err=\$?;$PROMPT_COMMAND;PS1=\"\$(fancy-prompt --prompt-escape bash "\$__err")\""

fish

function fish_prompt fancy-prompt $status end

Configuration

You can customize the colors that fancy-prompt uses via the FANCY_PROMPT_COLORS environment variable. It should contain a ,-separated list of key-value pairs separated by =. For instance:

export FANCY_PROMPT_COLORS=user_doy=bright_blue,host_lance=red

Color names

Display element names

Contributing

I am very interested in patches to make the prompt more useful or configurable. Currently it has a very limited amount of configurability because it works for me and I don't want to spend time on extra configurability that nobody will use, but if there is something you want, let me know (or send patches) and I'll see what i can do.

One thing to keep in mind is that in order to be useful, the prompt needs to run as quickly as possible. Try to avoid features that add unnecessary latency to the prompt display.