diff options
author | Marvin Borner | 2019-03-05 01:09:01 +0100 |
---|---|---|
committer | Marvin Borner | 2019-03-05 01:09:01 +0100 |
commit | 55457187d18221e76bd12f0fb2cfab65c49b92fb (patch) | |
tree | 8db042d2d80710d54100c2709ad4332153ac848a /.oh-my-zsh/plugins/battery/README.md |
Initial commit
Diffstat (limited to '.oh-my-zsh/plugins/battery/README.md')
-rw-r--r-- | .oh-my-zsh/plugins/battery/README.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.oh-my-zsh/plugins/battery/README.md b/.oh-my-zsh/plugins/battery/README.md new file mode 100644 index 0000000..b7a13a7 --- /dev/null +++ b/.oh-my-zsh/plugins/battery/README.md @@ -0,0 +1,13 @@ +# Battery Plugin + +This plugin adds some functions you can use to display battery information in your custom theme. + +To use, add `battery` to the list of plugins in your `.zshrc` file: + +`plugins=(... battery)` + +Then, add the `battery_pct_prompt` function to your custom theme. For example: + +``` +RPROMPT='$(battery_pct_prompt)' +``` |