fisik-yum / nafprompt

unnecessarily complicated bash prompt generator.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

notafancy-prompt

nafprompt is a "minimal" "prompt" for the bash shell that leverages its builtin functionality. The goal is to try to implement as many features as possible only using libraries included in the start golang distribution. There are many projects that provide a Powerline prompt, and hence this program does not aim to provide that feature.

Installation

make sure nafprompt is in your PATH and append the below code to the end of your .bashrc

naf_prompt() { 
    export PS1=$(nafprompt); 
}

PROMPT_COMMAND=naf_prompt

Configuration

nafprompt can be configured by setting the PROMPT variable in your .bashrc. There is no default prompt, and if unset it will be blank.

export PROMPT="your-prompt-here"

Configuration Syntax

In nafprompt, configuration and styling is achieved by wrapping appropriate keywords in {} curly braces, with colons and semicolons used to pass options to constructor.go. Nonexistent configuration options will be ignored.

Simple Keywords

{user} displays username
{host} displays host-name
{cwd} displays current working directory
{basename} displays the basename of {cwd}
{cmdnum} displays the command number
{date} displays date in Weekday Month Date format
{device} displays basename of shell's terminal device
{shellname} displays the name of the shell
{time24} displays 24-Hour time
{time12} displays 12-Hour time
{time12m} displays 12-Hour time with AM/PM

More information can be found here

Text Styling

All text is styled in the format {:text:foreground;background;formatting} , which applies to all text to the right of the block, until reset by another block. Text is treated as a module for simplicity. nafprompt supports colors supported by bash:

black
red
green
yellow
blue
magenta
cyan
grey
white

For all colors except black and white, a lighter shade can be achieved by simply appending an l before the name of the color. Any options not recognized will result in the default being applied.

Formatting text is limited by what your terminal emulator implements

bold
dim
underline
blink
invert
hide

For most configurations, only bold, dim, underline, and invert may be necessary. blink does not work in the majority of terminal emulators, and hide defeats the purpose of a prompt.

Modules

"Modules" attempt to display changing information. Currently, only one module exists. The general syntax for a module is: {:id:arg1;arg2}
The use of a module is indicated by enclosing its name (or ID) in colons. In this fashion text coloring is also treated like a module although it can be considered a standard function. A nonexistent module will throw an error, so note which modules you have compiled into your binary. The template-inspired syntax of nafprompt allows semi-complex nesting of various module outputs inside of each other, thanks to the rewritten template interpreting code.

Module: Go Project

{:go:displaystring} displays the current go project your working directory is in, if it exists. This requires the go binary to be in your path. displaystring is the string to display when inside a go project. Insert %s to format that part of the string with the name of the go project.

Module: Git - Branch and Commit ID

{:git:displaystring} displays the current branch you are in in a git repository and the last commit ID. This requires the git binary to be in your path. displaystring can be formatted with %b and %c to include branch and commit, respectively.

Module: (Rudimentary) Command output

{:exec:displaystring;command} pipes the stdout of a specified command into the prompt. Use %s to format. I assume this will not be very useful as it might cause problems with args that contain whitespace.

Screenshots

About

unnecessarily complicated bash prompt generator.

License:GNU General Public License v3.0


Languages

Language:Go 97.5%Language:Shell 2.5%