A beautiful and useful prompt generator for Bash, ZSH, Fish, and tcsh:
The generated prompts are designed to resemblepowerline, but otherwise this projecthas no relation to powerline.
Table of Contents generated with DocToc
All of the version control systems supported by powerline shell give you aquick look into the state of your repo:
⇡
or ⇣
indicating whether a git pushor pull is pending.If files are modified or in conflict, the situation is summarized with thefollowing symbols:
✎
-- a file has been modified (but not staged for commit, in git)✔
-- a file is staged for commit (git) or added for tracking✼
-- a file has conflicts?
-- a file is untrackedEach of these will have a number next to it if more than one file matches.
The segment can start with a symbol representing the version control system inuse. To show that symbol, the configuration file must have a variable vcs
with an option show_symbol
set to true
(seeSegment Configuration).
This script uses ANSI color codes to display colors in a terminal. These arenotoriously non-portable, so may not work for you out of the box, but trysetting your $TERM to xterm-256color
.
Patch the font you use for your terminal: seepowerline-fonts
Install using pip:
pip install powerline-shell
(You can use the--user
option toinstall for just your user, if you'd like. But you may need to fiddle with yourPATH
to get this working properly.)
git clone https://github.com/b-ryan/powerline-shell
cd powerline-shell
python setup.py install
Add the following to your .bashrc
file:
function _update_ps1() {
PS1=$(powerline-shell $?)
}
if [[ $TERM != linux && ! $PROMPT_COMMAND =~ _update_ps1 ]]; then
PROMPT_COMMAND="_update_ps1; $PROMPT_COMMAND"
fi
Note: On macOS, you must add this to one of .bash_profile
, .bash_login
,or .profile
. macOS will execute the files in the aforementioned order andwill stop execution at the first file it finds. For more information on theorder of precedence, see the section INVOCATION in man bash
.
Add the following to your .zshrc
:
function powerline_precmd() {
PS1="$(powerline-shell --shell zsh $?)"
}
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
Redefine fish_prompt
in ~/.config/fish/config.fish:
function fish_prompt
powerline-shell --shell bare $status
end
Add the following to your .tcshrc
:
alias precmd 'set prompt="`powerline-shell --shell tcsh $?`"'
Powerline-shell is customizable through the use of a config file. This file isexpected to be located at ~/.config/powerline-shell/config.json
. You cangenerate the default config at this location using:
mkdir -p ~/.config/powerline-shell && \
powerline-shell --generate-config > ~/.config/powerline-shell/config.json
(As an example, my config file is located here:here)
Once you have generated your config file, you can now start adding or removing"segments" - the building blocks of your shell. The list of segments availablecan be seenhere.
You can also create custom segments. Start by copying an existing segment likethis.Make sure to change any relative imports to absolute imports. Ie. change thingslike:
from ..utils import BasicSegment
to
from powerline_shell.utils import BasicSegment
Then change the add_to_powerline
function to do what you want. You can thenuse this segment in your configuration by putting the path to your segment inthe segments section, like:
"segments": [
"~/path/to/segment.py"
]
There are two special segments available. stdout
accepts an arbitrary commandand the output of the command will be put into your prompt. env
takes anenvironment variable and the value of the variable will be set in your prompt.For example, your config could look like this:
{
"segments": [
"cwd",
"git",
{
"type": "stdout",
"command": ["echo", "hi"],
"fg_color": 22,
"bg_color": 161
},
{
"type": "env",
"var": "DOCKER_MACHINE_NAME",
},
]
}
By default, a unicode character (resembling the > symbol) is used to separateeach segment. This can be changed by changing the "mode" option in the configfile. The available modes are:
patched
- The default.compatible
- Attempts to use characters that may already be available usingyour chosen font.flat
- No separator is used between segments, giving each segment arectangular appearance (and also saves space).The powerline_shell/themes
directory stores themes for your prompt, which arebasically color values used by segments. The default.py
defines a defaulttheme which can be used standalone, and every other theme falls back to it ifthey miss colors for any segments.
If you want to create a custom theme, start by copying one of the existingthemes, like thebasic.and update your ~/.config/powerline-shell/config.json
, setting the "theme"
to the path of the file. For example your configuration might have:
"theme": "~/mythemes/my-great-theme.py"
You can then modify the color codes to your liking. Theme colors are specifiedusing Xterm-256 color codes.
A script for testing color combinations is provided at colortest.py
. Notethat the colors you see may vary depending on your terminal. When designing atheme, please test your theme on multiple terminals, especially with defaultsettings.
Some segments support additional configuration. The options for the segment arenested under the name of the segment itself. For example, all of the optionsfor the cwd
segment are set in ~/.config/powerline-shell/config.json
like:
{
"segments": [...],
"cwd": {
options go here
}
"theme": "theme-name",
"vcs": {
options go here
}
}
The options for the cwd
segment are:
mode
: If plain
, then simple text will be used to show the cwd. Ifdironly
, only the current directory will be shown. Otherwise expands thecwd into individual directories.max_depth
: Maximum number of directories to show in path.max_dir_size
: Maximum number of characters displayed for each directory inthe path.full_cwd
: If true, the last directory will not be shortened whenmax_dir_size
is used.The hostname
segment provides one option:
colorize
: If true, the hostname will be colorized based on a hash ofitself.The vcs
segment provides one option:
show_symbol
: If true
, the version control system segment will start witha symbol representing the specific version control system in use in thecurrent directory.The options for the battery
segment are:
always_show_percentage
: If true, show percentage when fully charged on AC.low_threshold
: Threshold percentage for low-battery indicator color.The options for the time
segment are:
format
: Format string as used by strftime function, e.g. %H:%M
.The powerline_shell/segments
directory contains python scripts which areinjected as is into a single file powerline_shell_base.py
. Each segmentscript defines a function that inserts one or more segments into the prompt. Ifyou want to add a new segment, simply create a new file in the segmentsdirectory.
Make sure that your script does not introduce new globals which might conflictwith other scripts. Your script should fail silently and run quickly in anyscenario.
Make sure you introduce new default colors in themes/default.py
for every newsegment you create. Test your segment with this theme first.
You should add tests for your segment as best you are able. Unit andintegration tests are both welcome. Run your tests by running the test.sh
script. It uses docker
to manage dependencies and the environment.Alternatively, you can run the nosetests
command after installing therequirements in requirements-dev.txt
.
See the FAQ. If youcontinue to have issues, please open anissue.
Powerline 是一个 vim 的状态行插件,为包括 zsh、bash、tmux、IPython、Awesome 和 Qtile 在内的应用提供状态信息与提示。 特性 使用 Python 编写,可扩展、特性丰富。Powerline 完全用 Python 重写,以尽可能多地删除 vimscript,这样可以提供更好的可扩展性、更精简和更好的配置文件,以及一个结构化的、面向对象的代码库。除了 Py
bash-powerline Powerline for Bash in pure Bash script. Features Git: show branch name, tag name, or unique short hash. Git: show "*" symbol with uncommited modifications. Git: show "↑" symbol and numb