Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/traviskn/powerline

my custom powerline config
https://github.com/traviskn/powerline

Last synced: 20 days ago
JSON representation

my custom powerline config

Awesome Lists containing this project

README

        

# My Custom [Powerline](https://github.com/powerline/powerline) Config

For Mac OSX be sure to install pip

```shell
sudo easy_install pip
```

Install powerline-status with the --user option

```shell
pip install --user powerline-status
```

Add the pip executables directory to your path

```shell
export PATH=~/Library/Python/2.7/bin:$PATH
```

Clone this repo to your ~/.config directory

```shell
git clone https://github.com/Traviskn/powerline.git ~/.config/powerline
```

Use the following shell script to start up powerline

```shell
powerline_path=$(python -c 'import pkgutil; print pkgutil.get_loader("powerline").filename' 2>/dev/null)
if [[ "$powerline_path" != "" ]]; then
powerline-daemon -q
POWERLINE_BASH_CONTINUATION=1
POWERLINE_BASH_SELECT=1
source ${powerline_path}/bindings/bash/powerline.sh
fi
```