Coder Social home page Coder Social logo

please go ahead and laugh about shell_gpt HOT 2 CLOSED

careyjames avatar careyjames commented on June 12, 2024
please go ahead and laugh

from shell_gpt.

Comments (2)

hcal avatar hcal commented on June 12, 2024 1

For most Linux distributions the default shell is bash. If you are using one of those, you can set the prompt to almost anything you want in .bashrc.

Just find the existing 'PS1=' line and change it to PS1='🦄', If it doesn't exist, add it to the bottom of the file.

I set mine to cycle through the phases of the moon.

# Declare an index and the array of moon phases
moon_index=0
moon_phases=("🌕" "🌖" "🌗" "🌘" "🌑" "🌒" "🌓" "🌔")

# Function to update the moon phase
update_moon_phase () {
  moon=${moon_phases[moon_index]}
  let "moon_index = (moon_index + 1) % 8"
}

# Update the moon phase before each command
PROMPT_COMMAND=update_moon_phase

# Include the moon variable in your PS1
#PS1=' ${moon} [\W] \$ '
PS1='[\W] ${moon} '

If you are using Mac, I think it uses zsh, You can search for setting shell prompt on zsh. I think it is pretty similar - possibly the same -, but I dont use zshell so I'm not certain.

from shell_gpt.

careyjames avatar careyjames commented on June 12, 2024

thank you! that is cool!

from shell_gpt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.