Created
April 3, 2014 04:33
-
-
Save alexwolfe/9948307 to your computer and use it in GitHub Desktop.
Terminal Customizations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########################################### | |
## TERMINAL CUSTOMIZATIONS ################ | |
########################################### | |
## CUSTOM TAB NAME | |
function tabname { | |
printf "\e]1;$1\a" | |
} | |
## CUSTOM WINDOW NAME | |
function winname { | |
printf "\e]2;$1\a" | |
} | |
## CUSTOM USER NAME | |
export PS1="\[\e[1;31m\]WOLFE\[\e[m\] \[\e[1;37m\]\W\[\e[m\] \[\e[0;33m\]ϟ\[\e[m\] " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment