Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | inline colors.zsh, utilities.zsh and vcs.zsh | romkatv | 2019-07-24 | 1 | -137/+0 |
| | |||||
* | rename all internal vars | romkatv | 2019-07-24 | 1 | -1/+1 |
| | |||||
* | continue param refactoring | romkatv | 2019-07-23 | 1 | -4/+2 |
| | |||||
* | start massive refactoring of config params | romkatv | 2019-07-23 | 1 | -56/+53 |
| | |||||
* | ignore COLUMNS in _p9k_prompt_length | romkatv | 2019-06-09 | 1 | -0/+1 |
| | |||||
* | optimize _p9k_g_expand a little | romkatv | 2019-05-27 | 1 | -1/+4 |
| | |||||
* | add _p9k_prompt_length | romkatv | 2019-05-27 | 1 | -0/+23 |
| | |||||
* | fix a typo | romkatv | 2019-05-23 | 1 | -1/+1 |
| | |||||
* | speed up ip, vpn_ip and public_ip prompts | romkatv | 2019-05-23 | 1 | -32/+19 |
| | |||||
* | speed up ram and swap prompts | romkatv | 2019-05-22 | 1 | -26/+10 |
| | |||||
* | append POWERLEVEL9K_SHORTEN_DELIMITER when shortening with ↵ | romkatv | 2019-05-19 | 1 | -0/+2 |
| | | | | truncate_to_unique; use * as default in this case | ||||
* | support dynamic directories in dir prompt and fix a dozen bugs | romkatv | 2019-05-19 | 1 | -92/+0 |
| | |||||
* | replace all -v checks with equivalents (trying to port to zsh 5.2) | romkatv | 2019-04-30 | 1 | -1/+1 |
| | |||||
* | protect set_default from user-defined options | romkatv | 2019-04-22 | 1 | -0/+1 |
| | |||||
* | check for joined segments when figuring out whether vcs is enabled; fixes #41 | romkatv | 2019-03-26 | 1 | -2/+4 |
| | |||||
* | expand string parameters with (g::) where appropriate | romkatv | 2019-03-18 | 1 | -0/+12 |
| | |||||
* | don't read configuration options until the first precmd; plus massive ↵ | romkatv | 2019-03-13 | 1 | -233/+22 |
| | | | | refactoring and cleanup | ||||
* | Strip all newlines from ifconfig output | Dominik Ritter | 2019-02-22 | 1 | -1/+1 |
| | |||||
* | Fix regex | Dominik Ritter | 2019-02-22 | 1 | -1/+1 |
| | |||||
* | Interface States can be unsorted | Dominik Ritter | 2019-02-21 | 1 | -3/+7 |
| | |||||
* | Avoid loopback interfaces and parse IPv4 on OSX | Dominik Ritter | 2019-02-06 | 1 | -1/+4 |
| | |||||
* | Fix regular expression and test | Dominik Ritter | 2019-02-04 | 1 | -1/+1 |
| | |||||
* | Merge remote-tracking branch 'ben/master' into HEAD | Dominik Ritter | 2019-02-03 | 1 | -1/+3 |
|\ | |||||
| * | Avoid externals when parsing the os release on linux | Dominik Ritter | 2019-01-24 | 1 | -1/+1 |
| | | |||||
| * | Fix for #974 | Paul Gierz | 2018-09-07 | 1 | -1/+3 |
| | | |||||
* | | Parse IPs properly | Dominik Ritter | 2019-02-03 | 1 | -0/+48 |
|/ | | | | | | | This is done if we want to show a public IP, internal IP, or a VPN. In the VPN case, what we actually want is to display an indicator that a VPN is active, instead of the VPN IP itself. We parse the IP here anyway, because we want to save some specific code there. | ||||
* | Replace `typeset` check with shellvar flag | Ben Klein | 2018-07-12 | 1 | -3/+1 |
| | | | | More performance without changing functionality. | ||||
* | Fix os detection for MSYS2 | blackb1rd | 2018-06-30 | 1 | -1/+1 |
| | |||||
* | Fix Linux distribution detection | Max O'Cull | 2018-05-19 | 1 | -18/+18 |
| | |||||
* | Merge pull request #791 from dritter/local_variables | Ben Hilburn | 2018-04-14 | 1 | -0/+1 |
|\ | | | | | Make variables local | ||||
| * | Make variables local | Dominik Ritter | 2018-03-27 | 1 | -0/+1 |
| | | |||||
* | | update icons for nerd-fonts 2.0.0 | Tim Otlik | 2018-03-20 | 1 | -0/+15 |
|/ | |||||
* | **LARGE MERGE THAT TOUCHES LOTS OF THINGS.** | Ben Hilburn | 2018-03-07 | 1 | -0/+76 |
|\ | | | | | | | | | From this point until the next tagged release, `next` will be in a state of heavy flux as we make some significant and invasive changes. | ||||
| * | Fixed silly coding error | Christo Kotze | 2018-02-22 | 1 | -5/+3 |
| | | | | | | | | Did `local 3=...` instead of `3=...` | ||||
| * | Update for Travis | Christo Kotze | 2018-02-22 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While zsh accepts the following code: ``` local paths=(${(s:/:)${1//"~\/"/}}) ``` Travis fails unless it is ``` local paths=$1 paths=(${(s:/:)${paths//"~\/"/}}) ``` | ||||
| * | Updated truncatePath() | Christo Kotze | 2018-02-22 | 1 | -6/+7 |
| | | | | | | | | Added variable `delim_len` with test when delim="" | ||||
| * | Another Travis test | Christo Kotze | 2018-02-20 | 1 | -1/+2 |
| | | |||||
| * | Another change to test Travis | Christo Kotze | 2018-02-19 | 1 | -3/+3 |
| | | |||||
| * | Changed path splitting to test Travis | Christo Kotze | 2018-02-19 | 1 | -3/+3 |
| | | |||||
| * | Updated path splitting line | Christo Kotze | 2018-02-19 | 1 | -1/+1 |
| | | | | | | | | Works in the console, but Travis doesn't like it. | ||||
| * | Added truncatePath to utilities.zsh | Christo Kotze | 2018-02-19 | 1 | -0/+75 |
| | | | | | | | | | | | | | | | | | | | | | | | | Added `function truncatePath()` to utilities.zsh to take care of truncation. This is pure zsh code, without calls to `sed`. Parameters are: * $1 Path: string - the directory path to be truncated * $2 Length: integer - length to truncate to * $3 Delimiter: string - the delimiter to use * $4 From: string - "right" | "middle". If omited, assumes right. Cleaned up code to use the new function instead. | ||||
* | | fix $OS variable for battery segment | Tim Otlik | 2018-02-19 | 1 | -13/+1 |
| | | |||||
* | | add check of /etc/os-release for linux distros | Tim Otlik | 2018-02-16 | 1 | -13/+54 |
| | | |||||
* | | added LINUX_*_ICON for several OS | Tim Otlik | 2018-02-16 | 1 | -0/+16 |
|/ | |||||
* | Merge branch 'master' into next | Ben Hilburn | 2017-08-12 | 1 | -1/+1 |
|\ | |||||
| * | Fix empty delimiter | Dominik Ritter | 2017-07-12 | 1 | -1/+1 |
| | | | | | | | | | | Even if the delimiter is empty, the min length should be 1. This fixes #558 | ||||
* | | Icons for Windows/Cygwin + Refixes 32-bit support | guixxx | 2017-05-07 | 1 | -0/+4 |
|/ | |||||
* | Converting timer start time to hex | Ben Hilburn | 2017-04-19 | 1 | -1/+1 |
| | |||||
* | Improve logic | guixxx | 2017-04-19 | 1 | -9/+8 |
| | |||||
* | Adds Android icon/battery plugin support | guixxx | 2017-04-19 | 1 | -0/+9 |
| | | | | Plus fixes bhilburn/powerlevel9k#479, which was causing integer overflow on 32-bit CPUs |