zsh terminal
Add these lines in your ~/.bash_profile file
# Show current git branch name
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}| /*jslint devel: true, browser: true, es5: true */ | |
| /*global Promise */ | |
| function imgLoad(url) { | |
| 'use strict'; | |
| // Create new promise with the Promise() constructor; | |
| // This has as its argument a function with two parameters, resolve and reject | |
| return new Promise(function (resolve, reject) { | |
| // Standard XHR to load an image | |
| var request = new XMLHttpRequest(); |
| * Smartphones (portrait and landscape) ----------- */ | |
| @media only screen and (min-device-width : 320px) and (max-device-width : 480px) { | |
| /* Styles */ | |
| } | |
| /* Smartphones (landscape) ----------- */ | |
| @media only screen and (min-width : 321px) { | |
| /* Styles */ | |
| } |
Prereq:
apt-get install zsh
apt-get install git-coreGetting zsh to work in ubuntu is weird, since sh does not understand the source command. So, you do this to install zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh