Categories: Ubuntu

How to Change Your Prompt in Bash Shell in Ubuntu

I don’t like my prompt, i want to change it. it has my username and host, but the formatting is not what i want. This blog will get you started quickly on doing exactly that.

This is my current prompt below:

Sponsored

To change the prompt you will update .bashrc and set the PS1 environment variable to a new value.

Here is a cheatsheet of the prompt options:

You can use these placeholders for customization:

u – Username
h – Hostname
w – Current working directory
W – Basename of the current working directory
$ – Shows $ for a normal user and # for the root user
t – Current time (HH:MM:SS)
d – Date (e.g., “Mon Jan 05”)
! – History number of the command
# – Command number

I want to change my prompt to say
Here is my new prompt I am going to use:

export PS1=”linuxhint@mybox w: “

Can you guess what that does? Yes for my article writing this is exactly what i want. Here is the screenshot:

A lot of people will want the Username, Hostname, for my example i don’t! But you can use u and h for that. I used w to show what directory i am in. You can also show date and time, etc.

Sponsored

You can also play with setting colors in the prompt with these variables:

Foreground Colors:
e[30m – Black
e[31m – Red
e[32m – Green
e[33m – Yellow
e[34m – Blue
e[35m – Magenta
e[36m – Cyan
e[37m – White

Background Colors:
e[40m – Black
e[41m – Red
e[42m – Green
e[43m – Yellow
e[44m – Blue
e[45m – Magenta
e[46m – Cyan
e[47m – White
Reset Color:
e[0m – Reset to default

Here is my colorful version. The backslashes are primarily needed to ensure proper formatting of the prompt and avoid breaking its functionality.

export PS1=”[e[35m]linuxhint[e[0m]@[e[34m]mybox[e[0m] [e[31m]w[e[0m]: “


This uses Magenta, Blue and Red coloring for different parts of the prompt.

Conclusion

You can see how to customize your bash prompt with PS1 environment in Ubuntu. Hope this helps you be happy with your environment in linux.

Ubuntu Server Admin

Recent Posts

Welcome to the Ubuntu Weekly Newsletter 883

Welcome to the Ubuntu Weekly Newsletter, Issue 883 for the week of March 9 –…

1 day ago

How to Install nvidia-smi on Ubuntu or Debian Linux

In this article, we will see how to install nvidia-smi on Ubuntu or Debian Linux.…

2 days ago

How to Install clang tool on Ubuntu or Debian Linux

In this article, we will see how to install clang tool on Ubuntu or Debian…

3 days ago

How to resolve Ubuntu 20.04 Container Signature Errors on Raspberry Pi ARM Devices

When working with Docker containers on Raspberry Pi devices, you might encounter frustrating signature verification…

3 days ago

How to fix DNS Resolution Issues with OpenVPN on Ubuntu 18.04

You’ve recently upgraded to Ubuntu 18.04 and found that your OpenVPN connection no longer resolves…

3 days ago

How to Fix Ubuntu 18.04 System Monitor Launch Issues

Have you ever tried to open System Monitor on your Ubuntu 18.04 system only to…

4 days ago