summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* The script location should only be set once!Dominik Ritter2015-11-281-2/+0
|
* File might be a symlink.Dominik Ritter2015-11-281-0/+5
|
* Fallback mechanism is now more robust. If does not matter if the user ↵Dominik Ritter2015-11-281-0/+4
| | | | specified a file or a directory in `POWERLEVEL9K_INSTALLATION_PATH`.
* Added more checks to find the installation dir. Now we try to find prezto ↵Dominik Ritter2015-11-281-3/+9
| | | | automatically and print a nice warning as a fallback.
* Now the script just returns instead of exiting with an errorcode. The reason ↵Dominik Ritter2015-11-211-1/+1
| | | | for this is that users can't log in anymore if the specified a wrong path in POWERLEVEL9K_INSTALLATION_PATH and the script `exit`s. With `return` not the whole shell is terminated, so users get an ugly prompt, but are still able to modify .zshrc.
* The installation path of powerlevel9k is now configurable by setting the ↵Dominik Ritter2015-11-211-1/+3
| | | | | | variable POWERLEVEL9K_INSTALLATION_PATH. The value must be set to the exact location of the powerlevel9k.zsh-theme file (including the file name). This has only effect if you load your theme as a function and your ZSH version is below 5.0.8.
* For ZSH 5.0.8 `whence -v` tells also the path to the command. In that case ↵Dominik Ritter2015-11-211-3/+9
| | | | we can use that information to get a proper path to the utility functions.
* Merge pull request #152 from Tritlo/battery_fixBen Hilburn2015-11-211-12/+12
|\ | | | | Battery segment fix and enhancement.
| * fix some issues with the battery segmentMatthías Páll Gissurarson2015-11-201-12/+12
| |
* | Merge pull request #150 from Tritlo/prompt_endBen Hilburn2015-11-212-1/+4
|\ \ | |/ |/| Add icon for end of left prompt.
| * added icon to be able to set the end of the prompt explicitlyMatthías Páll Gissurarson2015-11-192-1/+4
| |
* | Merge pull request #149 from Tritlo/masterBen Hilburn2015-11-181-8/+13
|\ \ | |/ |/| Now allowing the RPROMPT to be on a newline.
| * added variable to have rprompt on the newlineMatthías Páll Gissurarson2015-11-171-8/+13
| |
* | Merge pull request #143 from dritter/segment_deprecation_helpersBen Hilburn2015-11-172-0/+24
|\ \ | | | | | | Added segment deprecation helper
| * | Used typeset to define the local array. This does the trick on linux.Dominik Ritter2015-11-172-3/+4
| | |
| * | Added a mechanism to make deprecated segments visible to the user.Dominik Ritter2015-11-172-0/+23
| | |
* | | Merge pull request #144 from dritter/changelog_additionsBen Hilburn2015-11-171-0/+10
|\ \ \ | |/ / |/| | Added the new rust segment and the changes to the rvm-segment to changelog
| * | Added the new rust segment and the changes to the rvm-segment to changelog.Dominik Ritter2015-11-171-0/+10
|/ /
* | Merge pull request #142 from dritter/rust_versionBen Hilburn2015-11-162-0/+10
|\ \ | | | | | | Added Rust version segment.
| * | Added documentation.Dominik Ritter2015-11-161-0/+1
| | |
| * | Add an Identifier to version.Dominik Ritter2015-11-161-1/+1
| | |
| * | Add segment for rust version.Dominik Ritter2015-11-161-0/+9
| | |
* | | Merge pull request #141 from dritter/improve_rvm_performanceBen Hilburn2015-11-161-4/+7
|\ \ \ | |/ / |/| | Huge performance improvement if you use `rvm` segment.
| * | Huge performance improvement if you use `rvm` segment.Dominik Ritter2015-11-161-4/+7
|/ / | | | | | | Thanks to @rjorgenson for the hint.
* | Merge branch 'master' into nextBen Hilburn2015-11-131-1/+16
|\|
| * Merge pull request #139 from sdupille/masterBen Hilburn2015-11-131-1/+1
| |\ | | | | | | Get terminal capabilities using a zsh builtin for portability
| | * Get terminal capabilities using a zsh builtin for portabilityStéphane Dupille2015-11-131-1/+1
| |/
| * Merge pull request #136 from dritter/hotfix/131-key-fixesBen Hilburn2015-11-121-0/+15
| |\ | | | | | | Issue #131: This fixes history-substring-search, home and end keys.
| | * Issue #131: This fixes history-substring-search, home and end keys.Dominik Ritter2015-11-121-0/+15
| |/
* | Merge pull request #112 from dritter/color_detectionBen Hilburn2015-11-135-443/+556
|\ \ | | | | | | Moved many sub-functions out of main theme file. Also improved color detection.
| * | Bugfix for prezto: In prezto the theme gets called by function (via zstyle). ↵Dominik Ritter2015-11-071-2/+14
| | | | | | | | | | | | In that case we hardcode the path to the theme as there seems no way to find the location so that we can source our other functions.
| * | If the theme-file is linked, dereference that link and source the right ↵Dominik Ritter2015-11-041-4/+12
| | | | | | | | | | | | functions.
| * | Extracted color functions to a separate file.Dominik Ritter2015-10-243-48/+62
| | |
| * | Extracted VCS-hooks into a separate file.Dominik Ritter2015-10-242-138/+150
| | |
| * | Extracted icons into a separate file.Dominik Ritter2015-10-243-196/+203
| | |
| * | Renamed "power-utilities.zsh" to just "utilities.zsh".Dominik Ritter2015-10-242-1/+1
| | |
| * | Merge branch 'next' into color_detectionDominik Ritter2015-10-223-21/+163
| |\ \
| * | | Moved utility-functions to "functions/power-utilities.zsh".Dominik Ritter2015-10-192-179/+192
| | | |
| * | | Merge branch 'next' into color_detectionDominik Ritter2015-10-182-74/+96
| |\ \ \
| * \ \ \ Merge remote-tracking branch 'ben/next' into color_detectionDominik Ritter2015-10-162-430/+95
| |\ \ \ \
| * | | | | Added handling for bright colors.Dominik Ritter2015-10-141-0/+2
| | | | | |
| * | | | | Removed unnecessary literal escape sequences.Dominik Ritter2015-10-111-2/+2
| | | | | |
| * | | | | Added a new function `isSameColor` to handle color comparisons. It is now ↵Dominik Ritter2015-10-111-3/+49
| | | | | | | | | | | | | | | | | | | | | | | | possible to compare ANSI colors (e.g. "black" or "bg-red") with ZSH-style colors (e.g. "001"). This way the subsegments work much better, as users can define color codes the way they like.
* | | | | | Merge pull request #134 from dritter/changelog_addedBen Hilburn2015-11-041-0/+89
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | Adding a CHANGELOG
| * | | | | Added a CHANGELOG.Dominik Ritter2015-11-041-0/+89
|/ / / / /
* | | | | Merge branch 'master' into nextBen Hilburn2015-10-221-2/+2
|\ \ \ \ \ | | |_|_|/ | |/| | |
| * | | | Merge pull request #123 from martinpelikan/masterBen Hilburn2015-10-221-1/+1
| |\ \ \ \ | | | | | | | | | | | | Fixes #122, SI prefixes should be evaluated as strings.
| | * | | | Fixes #122, SI prefixes should be evaluated as strings.Martin Pelikan2015-10-181-1/+1
| | | | | |
| * | | | | Merge pull request #128 from DanielGGordon/masterBen Hilburn2015-10-221-1/+1
| |\ \ \ \ \ | | |/ / / / | |/| | | | Rephrasing of error message when TERM not 256 color
| | * | | | Rephrasing of error message when TERM not 256 colorDaniel Gordon2015-10-191-1/+1
| |/ / / / | | | | | | | | | | | | | | | | | | | | - Literal command to be added is highlighted in blue - Now beginners won't try to add an incorrect command to ~/.zshrc