Skip to content

Welcome to our GitHub repository itsdk109 dedicated to customizing the Kali Linux terminal! Here, you'll find a comprehensive guide on how to personalize your terminal using Oh My Zsh, a powerful framework for managing Zsh configurations

Notifications You must be signed in to change notification settings

itsdk109/kalistyle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 

Repository files navigation

How to Customize Kali Linux Terminal Like Hacker?

Welcome to our GitHub repository itsdk109 dedicated to customizing the Kali Linux terminal! Here, you'll find a comprehensive guide on how to personalize your terminal using Oh My Zsh, a powerful framework for managing Zsh configurations.

1. ** Open Terminal Prompt & Update and install figlet lolcat package**

sudo apt update

2. After the terminal opens, type nano ~/.zshrc or nano ~/.bashrc and press enter.

nano ~/.zshrc

or

nano ~/.bashrc

3. Copy the code provided below and paste it at the end of the opened file ~/.zshrc or ~/.bashrc.

# Function to center text
center_text() {
    local term_width
    local padding
    local text="$1"

    term_width=$(tput cols)
    padding=$(( (term_width - ${#text}) / 2 ))

    printf "%*s%s\n" "$padding" "" "$text"
}

# Custom banner message for new terminals
if [ -n "$PS1" ]; then
    figlet -w 100 -c "your terminal banner name" | lolcat
    center_text "<<< your favorite quotes >>>" | lolcat
fi

# Redefine the clear command to show the banner and quote after clearing the screen
clear() {
    command clear
    if [ -n "$PS1" ]; then
        figlet -w 100 -c "your terminal banner name" | lolcat
        center_text "<<< your favorite quotes >>>" | lolcat
    fi
}

Final Step: Restart the Terminal

source ~/.zshrc

or

source ~/.bashrc

Is snapshot ko follow karke aap apne Kali Linux terminal ko professional aur stylish bana sakte hain. Enjoy karein apne naye customized terminal ka look!.

About

Welcome to our GitHub repository itsdk109 dedicated to customizing the Kali Linux terminal! Here, you'll find a comprehensive guide on how to personalize your terminal using Oh My Zsh, a powerful framework for managing Zsh configurations

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published