Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/traviskn/powerline
- Owner: Traviskn
- Created: 2016-05-17T04:25:33.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-05-17T04:41:29.000Z (over 8 years ago)
- Last Synced: 2024-11-12T23:35:33.675Z (3 months ago)
- Size: 20.5 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```