smford / delim

Creates a visual line to aid in reading terminal screens

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

delim

Creates a visual line to aid in reading terminal screens

Installation

You can install a few ways:

  1. Download the binary for your OS from https://github.com/smford/delim/releases
  2. or use go install
    go install -v github.com/smford/delim@latest
    
  3. or clone the git repo and build
    git clone git@github.com:smford/delim.git
    cd delim
    go get -v
    go build
    
  4. or by brew:
    brew install smford/tap/delim
    

Running

Simply run the command delim!

Configuration

No configuration is really needed, however if you wish to change the character used in the line from = to another character or even a string, this can be done a few ways.

Example methods to change the line from using = to Z:

  1. By command line:

    delim --char Z

  2. By configuration file:

    cat ~/.delim
    char: Z
  3. By environment variable:

    export DELIM_CHAR="Z"

If you are feeling adventurous you can set it to being a string rather than a single char, for example export DELIM_CHAR="carrot"

About

Creates a visual line to aid in reading terminal screens


Languages

Language:Go 99.0%Language:Shell 1.0%