Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if status is-interactive
- # Commands to run in interactive sessions can go here
- end
- function fish_prompt
- # interactive user name @ host name, date>
- # Print "$(date)" to magenta color
- echo -e "\e[35m$(date)\e[0m"
- # Print "(pwd)" to yellow color
- echo -e "\e[33m$(pwd)\e[0m"
- # Print "Jack's gone fishing..." in blue color
- # Print ":#" in green color
- # Print "~" in green color
- echo -e " \e[34mJack's gone fishing...
- [\e[32m~\e[0m\e[34m]\e[32m:#\e[0m "
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement