How to Christmassify Your Linux Terminal and Shell

It’s the most wonderful time of the year when the world is in the Christmas mood. It’s the happiest season of all. In this article, we will show some simple and fun Linux tricks to celebrate the season.

We will show how to christmassify your terminal and shell. By the end of this guide, you will learn how to customize your shell prompt using Bash variables and escaped characters.

In Bash, it is possible to add emojis, change colors, add font styles, as well as run commands that execute every time the prompt is drawn, such as to show your git branch.

Christmassify Your Linux Terminal and Shell
Christmassify Your Linux Terminal and Shell

Read Also: How to Customize Bash Colors and Content in Linux Terminal Prompt

To customize your Linux shell prompt to suit this Christmas festive season, you need to make some changes to your ~/.bashrc file.

$ vim ~/.bashrc

Add the following to the end of your ~/.bashrc file.

# print the git branch name if in a git project
parse_git_branch() {
  git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'
}
# set the input prompt symbol
ARROW="❯"
# define text formatting
PROMPT_BOLD="$(tput bold)"
PROMPT_UNDERLINE="$(tput smul)"
PROMPT_FG_GREEN="$(tput setaf 2)"
PROMPT_FG_CYAN="$(tput setaf 6)"
PROMPT_FG_YELLOW="$(tput setaf 3)"
PROMPT_FG_MAGENTA="$(tput setaf 5)"
PROMPT_RESET="$(tput sgr0)"
# save each section prompt section in variable
PROMPT_SECTION_SHELL="\[$PROMPT_BOLD$PROMPT_FG_GREEN\]\s\[$PROMPT_RESET\]"
PROMPT_SECTION_DIRECTORY="\[$PROMPT_UNDERLINE$PROMPT_FG_CYAN\]\W\[$PROMPT_RESET\]"
PROMPT_SECTION_GIT_BRANCH="\[$PROMPT_FG_YELLOW\]\`parse_git_branch\`\[$PROMPT_RESET\]"
PROMPT_SECTION_ARROW="\[$PROMPT_FG_MAGENTA\]$ARROW\[$PROMPT_RESET\]"
# set the prompt string using each section variable
PS1="
🎄 $PROMPT_SECTION_SHELL ❄️  $PROMPT_SECTION_DIRECTORY 🎁 $PROMPT_SECTION_GIT_BRANCH 🌟
$PROMPT_SECTION_ARROW "

Save the file and close it.

For the chages to start working, you can close and reopen your terminal window, or source the ~/.bashrc using following command.

$ source ~/.bashrc

This article originally appeared on ryanwhocodes website.

That’s all! In this article, we showed how to christmassify your terminal and shell in Linux. We showed how to customize your shell prompt using Bash variables and escaped characters. If you have any questions or comments, reach through the feedback form below.

Aaron Kili
Aaron Kili is a Linux and F.O.S.S enthusiast, an upcoming Linux SysAdmin, web developer, and currently a content creator for TecMint who loves working with computers and strongly believes in sharing knowledge.

Each tutorial at TecMint is created by a team of experienced Linux system administrators so that it meets our high-quality standards.

Join the TecMint Weekly Newsletter (More Than 156,129 Linux Enthusiasts Have Subscribed)
Was this article helpful? Please add a comment or buy me a coffee to show your appreciation.

1 thought on “How to Christmassify Your Linux Terminal and Shell”

Leave a Reply to George Cancel reply

Thank you for taking the time to share your thoughts with us. We appreciate your decision to leave a comment and value your contribution to the discussion. It's important to note that we moderate all comments in accordance with our comment policy to ensure a respectful and constructive conversation.

Rest assured that your email address will remain private and will not be published or shared with anyone. We prioritize the privacy and security of our users.