prwd - templated PS1 remplacement

Fork me on GitHub

prwd is a replacement for your shell's PS1, it provides a simple templating language with commands to customize your prompt. prwd keeps your prompt consistent between shells, provides fast template commands to get your hostname, git or mercurial branch without an inordinate amount of slow shell scripting.

setup

Add the following line in your shell's config file (e.g. .profile or .bashrc):

export PS1='`prwd`'

template syntax

All the commands start with ${ and end with }, anything else is considered static. Commands within the brackets have flags similarly to standard UNIX tools. Here is an example template definition:

${date} ${hostname}:${branch}:${path -l 24}${uid}

Which would render as:

18:29:22 prometheus:master:/tmp$

Your prompt template can be defined in three different places:

template commands

Check the prwdrc(5) man page for detailed command information. The following commands are available:

path and aliases

If you use the path command in your prompt template, defining aliases will allow path to shorten your current path using your own defined keywords. For example, add the following to your .prwdrc file:

alias *prwd /home/tamentis/projects/prwd

And navigating to /home/tamentis/projects/prwd/doc will allow prwd to reduce your current path to *prwd/doc. Another good example is that "~" is a default alias for prwd, you can create more of these ultra-short aliases if you want.

packages

source code

install from source code

$ ./configure
$ make
$ sudo make install

articles

Last updated: 2018-09-11 18:40:41