mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-12 08:10:07 +00:00
add battery
This commit is contained in:
parent
fa0c447817
commit
a0b4e481d8
1 changed files with 17 additions and 0 deletions
|
@ -49,6 +49,7 @@ fi
|
||||||
# =========================[ Line #2 ]=========================
|
# =========================[ Line #2 ]=========================
|
||||||
newline
|
newline
|
||||||
# public_ip # public IP address
|
# public_ip # public IP address
|
||||||
|
# battery # internal battery
|
||||||
# time # current time
|
# time # current time
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -319,6 +320,22 @@ fi
|
||||||
# Public IP color.
|
# Public IP color.
|
||||||
typeset -g POWERLEVEL9K_PUBLIC_IP_FOREGROUND=144
|
typeset -g POWERLEVEL9K_PUBLIC_IP_FOREGROUND=144
|
||||||
|
|
||||||
|
# Show battery in red when it's below this level and not connected to power supply.
|
||||||
|
typeset -g POWERLEVEL9K_BATTERY_LOW_THRESHOLD=20
|
||||||
|
typeset -g POWERLEVEL9K_BATTERY_LOW_FOREGROUND=1
|
||||||
|
# Show battery in green when it's charging.
|
||||||
|
typeset -g POWERLEVEL9K_BATTERY_CHARGING_FOREGROUND=2
|
||||||
|
# Show battery in yellow when not connected to power supply.
|
||||||
|
typeset -g POWERLEVEL9K_BATTERY_DISCONNECTED_FOREGROUND=3
|
||||||
|
# Battery pictograms going from low to high level of charge.
|
||||||
|
typeset -g POWERLEVEL9K_BATTERY_STAGES='▁▂▃▄▅▆▇'
|
||||||
|
# Display battery pictogram on black background.
|
||||||
|
typeset -g POWERLEVEL9K_BATTERY_VISUAL_IDENTIFIER_EXPANSION='%0K${P9K_VISUAL_IDENTIFIER}%k'
|
||||||
|
# Don't show battery when it's fully charged and connected to power supply.
|
||||||
|
typeset -g POWERLEVEL9K_BATTERY_CHARGED_{CONTENT,VISUAL_IDENTIFIER}_EXPANSION=
|
||||||
|
# Don't show the remaining time to charge/discharge.
|
||||||
|
typeset -g POWERLEVEL9K_BATTERY_VERBOSE=false
|
||||||
|
|
||||||
# Current time color.
|
# Current time color.
|
||||||
typeset -g POWERLEVEL9K_TIME_FOREGROUND=66
|
typeset -g POWERLEVEL9K_TIME_FOREGROUND=66
|
||||||
# Format for the current time: 09:51:02. See `man 3 strftime`.
|
# Format for the current time: 09:51:02. See `man 3 strftime`.
|
||||||
|
|
Loading…
Reference in a new issue