diff options
author | Ben Hilburn <bhilburn@gmail.com> | 2016-01-12 02:37:57 +0300 |
---|---|---|
committer | Ben Hilburn <bhilburn@gmail.com> | 2016-01-12 02:37:57 +0300 |
commit | 0639e1132ce89c6d1c96fc4f7eb6b5c960ca0086 (patch) | |
tree | d325c334b802933302ae3caf232aa35ca970cb15 /CHANGELOG.md | |
parent | 0b27bdc6f556fc854abb3ac4e1f2e03c6828762c (diff) | |
parent | f2b48d4f323f58f522355cd67777f3bc16ee826e (diff) |
Merge pull request #180 from dritter/3_0_changelog_additions
Missed changelog entries for v0.3.0
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 65a04de0..8cfaa1d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## v0.3.0 (next) +## v0.3.0 ### Introduced "visual identifiers" to the segments @@ -11,11 +11,31 @@ You can now merge segments together by suffixing the segment name with "_joined" For Developers: Be aware that the order of parameters in left/right_prompt_segment has changed. Now a boolean parameter must be set as second parameter (true if joined). +### `dir` changes + +This segment now has "state", which means you now can change the colors seperatly +depending if you are in your homefolder or not. +Your variables for that should now look like: +```zsh +POWERLEVEL9K_DIR_HOME_BACKGROUND='green' +POWERLEVEL9K_DIR_HOME_FOREGROUND='cyan' +POWERLEVEL9K_DIR_DEFAULT_BACKGROUND='red' +POWERLEVEL9K_DIR_DEFAULT_FOREGROUND='yellow' +``` + ### `status` changes The `status` segment was split up into three segments. `background_jobs` prints an icon if there are background jobs. `root_indicator` prints an icon if the user is root. The `status` segment focuses now on the status only. +The `status` segment also now has "state". If you want to overwrite the colors, +you have to add the state to your variables: +```zsh +POWERLEVEL9K_STATUS_ERROR_BACKGROUND='green' +POWERLEVEL9K_STATUS_ERROR_FOREGROUND='cyan' +POWERLEVEL9K_STATUS_OK_BACKGROUND='red' +POWERLEVEL9K_STATUS_OK_FOREGROUND='yellow' +``` ### New segment `custom_command` added |