Skip to content
View mfutselaar's full-sized avatar
Block or Report

Block or report mfutselaar

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Nice colored bash with git support Nice colored bash with git support
    1
    parse_git_branch() {
    2
      git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\x1b[93m\1\x1b[97m)/'
    3
    }
    4
    export PS1="\033[01;32m\]\u@\h\[\033[00m\]:\033[01;34m\]\w\[\033[97m\]\$(parse_git_branch)\[\033[00m\] $ "