Skip to content

Bragaman/powerline-shell

 
 

Repository files navigation

A Powerline style prompt for your shell

A Powerline like prompt for Bash, ZSH and Fish:

MacVim+Solarized+Powerline+CtrlP

  • Shows some important details about the git/svn/hg/fossil branch (see below)
  • Changes color if the last command exited with a failure code
  • If you're too deep into a directory tree, shortens the displayed path with an ellipsis
  • Shows the current Python virtualenv environment
  • It's easy to customize and extend. See below for details.

Version Control

All of the version control systems supported by powerline shell give you a quick look into the state of your repo:

  • The current branch is displayed and changes background color when the branch is dirty.
  • When the local branch differs from the remote, the difference in number of commits is shown along with or indicating whether a git push or pull is pending

In addition, git has a few extra symbols:

  • -- a file has been modified, but not staged for commit
  • -- a file is staged for commit
  • -- a file has conflicts

FIXME * A + appears when untracked files are present (except for git, which uses ? instead)

Each of these will have a number next to it if more than one file matches.

Setup

This script uses ANSI color codes to display colors in a terminal. These are notoriously non-portable, so may not work for you out of the box, but try setting your $TERM to xterm-256color, because that works for me.

  • Patch the font you use for your terminal: see https://github.com/Lokaltog/powerline-fonts

    • If you struggle too much to get working fonts in your terminal, you can use "compatible" mode.
    • If you're using old patched fonts, you have to use the older symbols. Basically reverse this commit in your copy
  • Clone this repository somewhere:

      git clone https://github.com/milkbikis/powerline-shell
    
  • Copy config.py.dist to config.py and edit it to configure the segments you want. Then run

      ./install.py
    
    • This will generate powerline-shell.py
  • (optional) Create a symlink to this python script in your home:

      ln -s <path/to/powerline-shell.py> ~/powerline-shell.py
    
    • If you don't want the symlink, just modify the path in the commands below
  • For python2.6 you have to install argparse

      pip install argparse
    

All Shells:

There are a few optional arguments which can be seen by running powerline-shell.py --help.

  --cwd-mode {fancy,plain,dironly}
                        How to display the current directory
  --cwd-max-depth CWD_MAX_DEPTH
                        Maximum number of directories to show in path
  --cwd-max-dir-size CWD_MAX_DIR_SIZE
                        Maximum number of letters displayed for each directory
                        in the path
  --colorize-hostname   Colorize the hostname based on a hash of itself.
  --mode {patched,compatible,flat}
                        The characters used to make separators between
                        segments

Bash:

Add the following to your .bashrc (or .profile on Mac):

function _update_ps1() {
    PS1="$(~/powerline-shell.py $? 2> /dev/null)"
}

if [ "$TERM" != "linux" ]; then
    PROMPT_COMMAND="_update_ps1; $PROMPT_COMMAND"
fi

ZSH:

Add the following to your .zshrc:

function powerline_precmd() {
    PS1="$(~/powerline-shell.py $? --shell zsh 2> /dev/null)"
}

function install_powerline_precmd() {
  for s in "${precmd_functions[@]}"; do
    if [ "$s" = "powerline_precmd" ]; then
      return
    fi
  done
  precmd_functions+=(powerline_precmd)
}

if [ "$TERM" != "linux" ]; then
    install_powerline_precmd
fi

Fish:

Redefine fish_prompt in ~/.config/fish/config.fish:

function fish_prompt
    ~/powerline-shell.py $status --shell bare ^/dev/null
end

Customization

Adding, Removing and Re-arranging segments

The config.py file defines which segments are drawn and in which order. Simply comment out and rearrange segment names to get your desired arrangement. Every time you change config.py, run install.py, which will generate a new powerline-shell.py customized to your configuration. You should see the new prompt immediately.

Contributing new types of segments

The segments directory contains python scripts which are injected as is into a single file powerline_shell_base.py. Each segment script defines a function that inserts one or more segments into the prompt. If you want to add a new segment, simply create a new file in the segments directory and add its name to the config.py file at the appropriate location.

Make sure that your script does not introduce new globals which might conflict with other scripts. Your script should fail silently and run quickly in any scenario.

Make sure you introduce new default colors in themes/default.py for every new segment you create. Test your segment with this theme first.

You should add tests for your segment as best you are able. Unit and integration tests are both welcome. Run your tests with the nosetests command after install the requirements in dev_requirements.txt.

Themes

The themes directory stores themes for your prompt, which are basically color values used by segments. The default.py defines a default theme which can be used standalone, and every other theme falls back to it if they miss colors for any segments. Create new themes by copying any other existing theme and changing the values. To use a theme, set the THEME variable in config.py to the name of your theme.

A script for testing color combinations is provided at themes/colortest.py. Note that the colors you see may vary depending on your terminal. When designing a theme, please test your theme on multiple terminals, especially with default settings.

Changes

2015-12-26

  • Beginnings of unit testing for segments. Included in this change was a refactor of the way segments are added to powerline. Now, instead of looking for a global powerline object, powerline is passed into the function to add the segment. Segments will also no longer add the segments by calling the add function themselves. (@b-ryan)
  • Python3 fixes for lib/color_compliment.py. (@ceholden)

2015-11-25

  • virtual_env segment now supports environments made with conda (@ceholden)

2015-11-21

  • Fixes for Python 3 compatibility (@b-ryan)

2015-11-18

  • The git segment has gotten a makeover (@MartinWetterwald)
  • Fix git segment when git is not on the standard PATH (@andrejgl)
  • Fix --cwd-max-depth showing duplicates when it's <= 2 (@b-ryan)
  • Add padding around exit_code segment (@phatblat)

2015-10-02

  • New option (--cwd-max-dir-size) which allows you to limit each directory that is displayed to a number of characters. This currently does not apply if you are using --cwd-mode plain. (@mart-e)

2015-08-26

  • New plain mode of displaying the current working directory which can be used by adding --cwd-only plain to powerline-shell.py. This deprecates the --cwd-only option. --cwd-mode dironly can be used instead. (@paol)

2015-08-18

2015-08-01

  • Use print function for some python3 compatibility (@strycore)

2015-07-31

  • The current working directory no longer follows symbolic links
  • New exit_code segment (@disruptek)

2015-07-30

2015-07-27

About

A beautiful and useful prompt for your shell

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%