Get color prompts on your MacOS Terminal

Have you ever wondered that you would want colors to pop up on your terminal?
Software Development
by Jey Geethan | August 14, 2019

Have you ever wondered that you would want colors to pop up on your terminal? I did and it made my life easier. It helped me to understand very quickly about the following:

  • Which folder im currently in
  • Which git branch my local workspace is in
  • What terminal commands I have issued

All you have to do is to use the following script in your ~/.bash_profile


Gist link: https://gist.github.com/jeygeethan/a6d261d32cea97e9a52b82f48989c07f


Related Articles

Building Microservices For Quick Wins
Software Development

Building Microservices For Quick Wins

by Jey Geethan | October 03, 2018
Microservices have always been a hot topic among software firms. Does your firm really need a microservice? Read on to find out.

[VB.NET] Finding whether its Design Mode or Runtime Mode for Forms
Software Development

[VB.NET] Finding whether its Design Mode or Runtime Mode for Forms

by Jey Geethan | November 06, 2008
Sometimes, while creating controls, either by Inherited Controls or UserControls, we will be required to skip a piece of code depending upon the design time or runtime mode.