#!/bin/bash # curl https://gist.githubusercontent.com/marksteve/86c83f3beda0de55c1f5e4b91fc2ec00/raw/6c7d3512567ab53ff52e4bf0743b7f5d5936e33d/remote_prompt.sh | bash RS="\[\033[0m\]" # reset FBLK="\[\033[30m\]" # foreground black BRED="\[\033[41m\]" # background red echo >> ~/.bashrc echo "export PS1='$FBLK$BRED\u@\h$RS:\w\$ '" >> ~/.bashrc