mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 00:00:06 +00:00
add ip
to config templates
This commit is contained in:
parent
75e5712cd0
commit
73e24180a0
4 changed files with 93 additions and 8 deletions
|
@ -90,6 +90,7 @@
|
||||||
# time # current time
|
# time # current time
|
||||||
# =========================[ Line #2 ]=========================
|
# =========================[ Line #2 ]=========================
|
||||||
newline # \n
|
newline # \n
|
||||||
|
# ip # ip address and bandwidth usage for a specified network interface
|
||||||
# public_ip # public IP address
|
# public_ip # public IP address
|
||||||
# proxy # system-wide http/https/ftp proxy
|
# proxy # system-wide http/https/ftp proxy
|
||||||
# battery # internal battery
|
# battery # internal battery
|
||||||
|
@ -1085,12 +1086,32 @@
|
||||||
# When on VPN, show just an icon without the IP address.
|
# When on VPN, show just an icon without the IP address.
|
||||||
# Tip: To display the private IP address when on VPN, remove the next line.
|
# Tip: To display the private IP address when on VPN, remove the next line.
|
||||||
typeset -g POWERLEVEL9K_VPN_IP_CONTENT_EXPANSION=
|
typeset -g POWERLEVEL9K_VPN_IP_CONTENT_EXPANSION=
|
||||||
# Regular expression for the VPN network interface. Run ifconfig while on VPN to see the
|
# Regular expression for the VPN network interface. Run `ifconfig` or `ip -4 a show` while on VPN
|
||||||
# name of the interface.
|
# to see the name of the interface.
|
||||||
typeset -g POWERLEVEL9K_VPN_IP_INTERFACE='(wg|(.*tun))[0-9]*'
|
typeset -g POWERLEVEL9K_VPN_IP_INTERFACE='(wg|(.*tun))[0-9]*'
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_VPN_IP_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_VPN_IP_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
|
###########[ ip: ip address and bandwidth usage for a specified network interface ]###########
|
||||||
|
# IP color.
|
||||||
|
typeset -g POWERLEVEL9K_IP_FOREGROUND=38
|
||||||
|
# The following parameters are accessible within the expansion:
|
||||||
|
#
|
||||||
|
# Parameter | Meaning
|
||||||
|
# ----------------------+---------------
|
||||||
|
# P9K_IP_IP | IP address
|
||||||
|
# P9K_IP_INTERFACE | network interface
|
||||||
|
# P9K_IP_RX_BYTES | total number of bytes received
|
||||||
|
# P9K_IP_TX_BYTES | total number of bytes sent
|
||||||
|
# P9K_IP_RX_RATE | receive rate (since last prompt)
|
||||||
|
# P9K_IP_TX_RATE | send rate (since last prompt)
|
||||||
|
typeset -g POWERLEVEL9K_IP_CONTENT_EXPANSION='%70F⇣$P9K_IP_RX_RATE %215F⇡$P9K_IP_TX_RATE %38F$P9K_IP_IP'
|
||||||
|
# Show information for the first network interface whose name matches this regular expression.
|
||||||
|
# Run `ifconfig` or `ip -4 a show` to see the names of all network interfaces.
|
||||||
|
typeset -g POWERLEVEL9K_IP_INTERFACE='e.*'
|
||||||
|
# Custom icon.
|
||||||
|
# typeset -g POWERLEVEL9K_IP_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
#########################[ proxy: system-wide http/https/ftp proxy ]##########################
|
#########################[ proxy: system-wide http/https/ftp proxy ]##########################
|
||||||
# Proxy color.
|
# Proxy color.
|
||||||
typeset -g POWERLEVEL9K_PROXY_FOREGROUND=68
|
typeset -g POWERLEVEL9K_PROXY_FOREGROUND=68
|
||||||
|
|
|
@ -89,6 +89,7 @@
|
||||||
# time # current time
|
# time # current time
|
||||||
# =========================[ Line #2 ]=========================
|
# =========================[ Line #2 ]=========================
|
||||||
newline # \n
|
newline # \n
|
||||||
|
# ip # ip address and bandwidth usage for a specified network interface
|
||||||
# public_ip # public IP address
|
# public_ip # public IP address
|
||||||
# proxy # system-wide http/https/ftp proxy
|
# proxy # system-wide http/https/ftp proxy
|
||||||
# battery # internal battery
|
# battery # internal battery
|
||||||
|
@ -1064,12 +1065,32 @@
|
||||||
# When on VPN, show just an icon without the IP address.
|
# When on VPN, show just an icon without the IP address.
|
||||||
# Tip: To display the private IP address when on VPN, remove the next line.
|
# Tip: To display the private IP address when on VPN, remove the next line.
|
||||||
typeset -g POWERLEVEL9K_VPN_IP_CONTENT_EXPANSION=
|
typeset -g POWERLEVEL9K_VPN_IP_CONTENT_EXPANSION=
|
||||||
# Regular expression for the VPN network interface. Run ifconfig while on VPN to see the
|
# Regular expression for the VPN network interface. Run `ifconfig` or `ip -4 a show` while on VPN
|
||||||
# name of the interface.
|
# to see the name of the interface.
|
||||||
typeset -g POWERLEVEL9K_VPN_IP_INTERFACE='(wg|(.*tun))[0-9]*'
|
typeset -g POWERLEVEL9K_VPN_IP_INTERFACE='(wg|(.*tun))[0-9]*'
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_VPN_IP_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_VPN_IP_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
|
###########[ ip: ip address and bandwidth usage for a specified network interface ]###########
|
||||||
|
# IP color.
|
||||||
|
typeset -g POWERLEVEL9K_IP_FOREGROUND=4
|
||||||
|
# The following parameters are accessible within the expansion:
|
||||||
|
#
|
||||||
|
# Parameter | Meaning
|
||||||
|
# ----------------------+---------------
|
||||||
|
# P9K_IP_IP | IP address
|
||||||
|
# P9K_IP_INTERFACE | network interface
|
||||||
|
# P9K_IP_RX_BYTES | total number of bytes received
|
||||||
|
# P9K_IP_TX_BYTES | total number of bytes sent
|
||||||
|
# P9K_IP_RX_RATE | receive rate (since last prompt)
|
||||||
|
# P9K_IP_TX_RATE | send rate (since last prompt)
|
||||||
|
typeset -g POWERLEVEL9K_IP_CONTENT_EXPANSION='$P9K_IP_IP %2F⇣$P9K_IP_RX_RATE %3F⇡$P9K_IP_TX_RATE'
|
||||||
|
# Show information for the first network interface whose name matches this regular expression.
|
||||||
|
# Run `ifconfig` or `ip -4 a show` to see the names of all network interfaces.
|
||||||
|
typeset -g POWERLEVEL9K_IP_INTERFACE='e.*'
|
||||||
|
# Custom icon.
|
||||||
|
# typeset -g POWERLEVEL9K_IP_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
#########################[ proxy: system-wide http/https/ftp proxy ]##########################
|
#########################[ proxy: system-wide http/https/ftp proxy ]##########################
|
||||||
# Proxy color.
|
# Proxy color.
|
||||||
typeset -g POWERLEVEL9K_PROXY_FOREGROUND=2
|
typeset -g POWERLEVEL9K_PROXY_FOREGROUND=2
|
||||||
|
|
|
@ -89,6 +89,7 @@
|
||||||
# time # current time
|
# time # current time
|
||||||
# =========================[ Line #2 ]=========================
|
# =========================[ Line #2 ]=========================
|
||||||
newline
|
newline
|
||||||
|
# ip # ip address and bandwidth usage for a specified network interface
|
||||||
# public_ip # public IP address
|
# public_ip # public IP address
|
||||||
# proxy # system-wide http/https/ftp proxy
|
# proxy # system-wide http/https/ftp proxy
|
||||||
# battery # internal battery
|
# battery # internal battery
|
||||||
|
@ -1064,12 +1065,32 @@
|
||||||
# When on VPN, show just an icon without the IP address.
|
# When on VPN, show just an icon without the IP address.
|
||||||
# Tip: To display the private IP address when on VPN, remove the next line.
|
# Tip: To display the private IP address when on VPN, remove the next line.
|
||||||
typeset -g POWERLEVEL9K_VPN_IP_CONTENT_EXPANSION=
|
typeset -g POWERLEVEL9K_VPN_IP_CONTENT_EXPANSION=
|
||||||
# Regular expression for the VPN network interface. Run ifconfig while on VPN to see the
|
# Regular expression for the VPN network interface. Run `ifconfig` or `ip -4 a show` while on VPN
|
||||||
# name of the interface.
|
# to see the name of the interface.
|
||||||
typeset -g POWERLEVEL9K_VPN_IP_INTERFACE='(wg|(.*tun))[0-9]*'
|
typeset -g POWERLEVEL9K_VPN_IP_INTERFACE='(wg|(.*tun))[0-9]*'
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_VPN_IP_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_VPN_IP_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
|
###########[ ip: ip address and bandwidth usage for a specified network interface ]###########
|
||||||
|
# IP color.
|
||||||
|
typeset -g POWERLEVEL9K_IP_FOREGROUND=38
|
||||||
|
# The following parameters are accessible within the expansion:
|
||||||
|
#
|
||||||
|
# Parameter | Meaning
|
||||||
|
# ----------------------+---------------
|
||||||
|
# P9K_IP_IP | IP address
|
||||||
|
# P9K_IP_INTERFACE | network interface
|
||||||
|
# P9K_IP_RX_BYTES | total number of bytes received
|
||||||
|
# P9K_IP_TX_BYTES | total number of bytes sent
|
||||||
|
# P9K_IP_RX_RATE | receive rate (since last prompt)
|
||||||
|
# P9K_IP_TX_RATE | send rate (since last prompt)
|
||||||
|
typeset -g POWERLEVEL9K_IP_CONTENT_EXPANSION='$P9K_IP_IP %70F⇣$P9K_IP_RX_RATE %215F⇡$P9K_IP_TX_RATE'
|
||||||
|
# Show information for the first network interface whose name matches this regular expression.
|
||||||
|
# Run `ifconfig` or `ip -4 a show` to see the names of all network interfaces.
|
||||||
|
typeset -g POWERLEVEL9K_IP_INTERFACE='e.*'
|
||||||
|
# Custom icon.
|
||||||
|
# typeset -g POWERLEVEL9K_IP_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
#########################[ proxy: system-wide http/https/ftp proxy ]##########################
|
#########################[ proxy: system-wide http/https/ftp proxy ]##########################
|
||||||
# Proxy color.
|
# Proxy color.
|
||||||
typeset -g POWERLEVEL9K_PROXY_FOREGROUND=68
|
typeset -g POWERLEVEL9K_PROXY_FOREGROUND=68
|
||||||
|
|
|
@ -90,6 +90,7 @@
|
||||||
# time # current time
|
# time # current time
|
||||||
# =========================[ Line #2 ]=========================
|
# =========================[ Line #2 ]=========================
|
||||||
newline
|
newline
|
||||||
|
# ip # ip address and bandwidth usage for a specified network interface
|
||||||
# public_ip # public IP address
|
# public_ip # public IP address
|
||||||
# proxy # system-wide http/https/ftp proxy
|
# proxy # system-wide http/https/ftp proxy
|
||||||
# battery # internal battery
|
# battery # internal battery
|
||||||
|
@ -1127,12 +1128,33 @@
|
||||||
# When on VPN, show just an icon without the IP address.
|
# When on VPN, show just an icon without the IP address.
|
||||||
# Tip: To display the private IP address when on VPN, remove the next line.
|
# Tip: To display the private IP address when on VPN, remove the next line.
|
||||||
typeset -g POWERLEVEL9K_VPN_IP_CONTENT_EXPANSION=
|
typeset -g POWERLEVEL9K_VPN_IP_CONTENT_EXPANSION=
|
||||||
# Regular expression for the VPN network interface. Run ifconfig while on VPN to see the
|
# Regular expression for the VPN network interface. Run `ifconfig` or `ip -4 a show` while on VPN
|
||||||
# name of the interface.
|
# to see the name of the interface.
|
||||||
typeset -g POWERLEVEL9K_VPN_IP_INTERFACE='(wg|(.*tun))[0-9]*'
|
typeset -g POWERLEVEL9K_VPN_IP_INTERFACE='(wg|(.*tun))[0-9]*'
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_VPN_IP_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_VPN_IP_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
|
###########[ ip: ip address and bandwidth usage for a specified network interface ]###########
|
||||||
|
# IP color.
|
||||||
|
typeset -g POWERLEVEL9K_IP_BACKGROUND=4
|
||||||
|
typeset -g POWERLEVEL9K_IP_FOREGROUND=0
|
||||||
|
# The following parameters are accessible within the expansion:
|
||||||
|
#
|
||||||
|
# Parameter | Meaning
|
||||||
|
# ----------------------+---------------
|
||||||
|
# P9K_IP_IP | IP address
|
||||||
|
# P9K_IP_INTERFACE | network interface
|
||||||
|
# P9K_IP_RX_BYTES | total number of bytes received
|
||||||
|
# P9K_IP_TX_BYTES | total number of bytes sent
|
||||||
|
# P9K_IP_RX_RATE | receive rate (since last prompt)
|
||||||
|
# P9K_IP_TX_RATE | send rate (since last prompt)
|
||||||
|
typeset -g POWERLEVEL9K_IP_CONTENT_EXPANSION='⇣$P9K_IP_RX_RATE ⇡$P9K_IP_TX_RATE $P9K_IP_IP'
|
||||||
|
# Show information for the first network interface whose name matches this regular expression.
|
||||||
|
# Run `ifconfig` or `ip -4 a show` to see the names of all network interfaces.
|
||||||
|
typeset -g POWERLEVEL9K_IP_INTERFACE='e.*'
|
||||||
|
# Custom icon.
|
||||||
|
# typeset -g POWERLEVEL9K_IP_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
#########################[ proxy: system-wide http/https/ftp proxy ]##########################
|
#########################[ proxy: system-wide http/https/ftp proxy ]##########################
|
||||||
# Proxy color.
|
# Proxy color.
|
||||||
# typeset -g POWERLEVEL9K_PROXY_FOREGROUND=4
|
# typeset -g POWERLEVEL9K_PROXY_FOREGROUND=4
|
||||||
|
|
Loading…
Reference in a new issue