Skip Navigation

Custom shell prompt tips and tricks?

Recently I stumbled over an article, about how to customize your shell prompt. What really surprised me, is that it lacked one of the most basic tips I learned nearly 20 years back: Always display a timestamp in the prompt, to be able to check how long a process is running or when it ended. (Don't need it daily, but every so often it saves my butt. ;-)) The other trick is to always have a colorful prompt, to easily discern where output from programs start/stop. In total my PS1 looks like this (with GIT status at the end): \e[32m\u\e[m@\e[35m\h\e[m \e[36m\A\e[m \e[37m[\e[m\e[31m\w\e[m\e[37m]\e[m$(__git_ps1 "(%s)")

My question is, what customization, tips and tricks do you have for the shell prompt?

19 comments
  • Use PS1="▌\t▐\n\w→" to display your local time each time you press enter. And make aliases of lengthy commands such as alias internettest="curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python -" (You need to install python to run this.)

19 comments