diff options
author | romkatv <roman.perepelitsa@gmail.com> | 2019-07-26 11:20:40 +0300 |
---|---|---|
committer | romkatv <roman.perepelitsa@gmail.com> | 2019-07-26 11:20:40 +0300 |
commit | cef049e0de310c0ba00eed5d21f7678d105db3d2 (patch) | |
tree | 8e1ff3008265fca4454fc578672767668841bd45 /config/p10k-lean.zsh | |
parent | 2c6f3f32aaca1f371879eda3d9d29a22be99732c (diff) |
nordvpn: add CONNECTING and DISCONECTING states, remove OTHER
See https://github.com/romkatv/powerlevel10k/issues/133.
Diffstat (limited to 'config/p10k-lean.zsh')
-rw-r--r-- | config/p10k-lean.zsh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/config/p10k-lean.zsh b/config/p10k-lean.zsh index 16c55bc6..53633ede 100644 --- a/config/p10k-lean.zsh +++ b/config/p10k-lean.zsh @@ -337,8 +337,11 @@ fi ##########[ nordvpn: nordvpn connection status, linux only (https://nordvpn.com/) ]########### # NordVPN connection indicator color when connected. typeset -g POWERLEVEL9K_NORDVPN_CONNECTED_FOREGROUND=4 - # NordVPN connection indicator color when disconnected. - typeset -g POWERLEVEL9K_NORDVPN_DISCONNECTED_FOREGROUND=3 + # NordVPN connection indicator color when not connected. + typeset -g POWERLEVEL9K_NORDVPN_{DISCONNECTED,CONNECTING,DISCONNECTING}_FOREGROUND=3 + # Uncomment these two lines to hide NordVPN connection indicator when not connected. + # typeset -g POWERLEVEL9K_NORDVPN_{DISCONNECTED,CONNECTING,DISCONNECTING}_CONTENT_EXPANSION= + # typeset -g POWERLEVEL9K_NORDVPN_{DISCONNECTED,CONNECTING,DISCONNECTING}_VISUAL_IDENTIFIER_EXPANSION= ####################################[ context: user@host ]#################################### # Context format: user@host. |