Skip to content

Instantly share code, notes, and snippets.

@pranav7
pranav7 / pranavsingh.zsh-theme
Last active August 29, 2015 14:04
ZSH Theme
local ret_status="%(?:%{$fg_bold[green]%}➜ :%{$fg_bold[red]%}➜ %s)"
PROMPT='${ret_status}%{$fg_bold[green]%}%p %{$fg[black]%}%c %{$fg_bold[red]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}'
ZSH_THEME_GIT_PROMPT_PREFIX="(%{$fg[red]%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}) %{$fg[black]%}>%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})"
@pranav7
pranav7 / install_chromedriver.md
Last active April 8, 2021 13:03
Installing Chromedriver and setting up Cucumber to run with Chrome on Linux/Ubuntu

Follow the below steps to install chrome webdrivers on Ubuntu

  • Install Unzip

sudo apt-get install unzip

  • Assuming you're running a 64-bit OS, download the latest version of chromedriver from their website

wget -N http://chromedriver.storage.googleapis.com/2.10/chromedriver_linux64.zip -P ~/Downloads unzip ~/Downloads/chromedriver_linux64.zip -d ~/Downloads