mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-21 20:00:07 +00:00
add "todo" prompt segment to default configs
This commit is contained in:
parent
2291458a5a
commit
7b77d63e7e
3 changed files with 76 additions and 0 deletions
|
@ -82,6 +82,7 @@
|
|||
# vpn_ip # virtual private network indicator
|
||||
# ram # free RAM
|
||||
# load # CPU load
|
||||
todo # todo items (https://github.com/todotxt/todo.txt-cli)
|
||||
# time # current time
|
||||
# =========================[ Line #2 ]=========================
|
||||
newline
|
||||
|
@ -584,6 +585,30 @@
|
|||
# Custom icon.
|
||||
# typeset -g POWERLEVEL9K_LOAD_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||
|
||||
################[ todo: todo items (https://github.com/todotxt/todo.txt-cli) ]################
|
||||
# Todo color.
|
||||
typeset -g POWERLEVEL9K_TODO_FOREGROUND=110
|
||||
# Hide todo when the total number of tasks is zero.
|
||||
typeset -g POWERLEVEL9K_TODO_HIDE_ZERO_TOTAL=true
|
||||
# Hide todo when the number of tasks after filtering is zero.
|
||||
typeset -g POWERLEVEL9K_TODO_HIDE_ZERO_FILTERED=false
|
||||
|
||||
# Todo format. The following parameters are available within the expansion.
|
||||
#
|
||||
# - P9K_TODO_TOTAL_TASK_COUNT The total number of tasks.
|
||||
# - P9K_TODO_FILTERED_TASK_COUNT The number of tasks after filtering.
|
||||
#
|
||||
# These variables correspond to the last line of the output of `todo.sh -p ls`:
|
||||
#
|
||||
# TODO: 24 of 42 tasks shown
|
||||
#
|
||||
# Here 24 is P9K_TODO_FILTERED_TASK_COUNT and 42 is P9K_TODO_TOTAL_TASK_COUNT.
|
||||
#
|
||||
# typeset -g POWERLEVEL9K_TODO_CONTENT_EXPANSION='$P9K_TODO_FILTERED_TASK_COUNT'
|
||||
|
||||
# Custom icon.
|
||||
# typeset -g POWERLEVEL9K_TODO_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||
|
||||
##################################[ context: user@hostname ]##################################
|
||||
# Context color when running with privileges.
|
||||
typeset -g POWERLEVEL9K_CONTEXT_ROOT_FOREGROUND=178
|
||||
|
|
|
@ -81,6 +81,7 @@
|
|||
# vpn_ip # virtual private network indicator
|
||||
# ram # free RAM
|
||||
# load # CPU load
|
||||
todo # todo items (https://github.com/todotxt/todo.txt-cli)
|
||||
# time # current time
|
||||
# =========================[ Line #2 ]=========================
|
||||
newline
|
||||
|
@ -560,6 +561,30 @@
|
|||
# Custom icon.
|
||||
# typeset -g POWERLEVEL9K_LOAD_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||
|
||||
################[ todo: todo items (https://github.com/todotxt/todo.txt-cli) ]################
|
||||
# Todo color.
|
||||
typeset -g POWERLEVEL9K_TODO_FOREGROUND=110
|
||||
# Hide todo when the total number of tasks is zero.
|
||||
typeset -g POWERLEVEL9K_TODO_HIDE_ZERO_TOTAL=true
|
||||
# Hide todo when the number of tasks after filtering is zero.
|
||||
typeset -g POWERLEVEL9K_TODO_HIDE_ZERO_FILTERED=false
|
||||
|
||||
# Todo format. The following parameters are available within the expansion.
|
||||
#
|
||||
# - P9K_TODO_TOTAL_TASK_COUNT The total number of tasks.
|
||||
# - P9K_TODO_FILTERED_TASK_COUNT The number of tasks after filtering.
|
||||
#
|
||||
# These variables correspond to the last line of the output of `todo.sh -p ls`:
|
||||
#
|
||||
# TODO: 24 of 42 tasks shown
|
||||
#
|
||||
# Here 24 is P9K_TODO_FILTERED_TASK_COUNT and 42 is P9K_TODO_TOTAL_TASK_COUNT.
|
||||
#
|
||||
# typeset -g POWERLEVEL9K_TODO_CONTENT_EXPANSION='$P9K_TODO_FILTERED_TASK_COUNT'
|
||||
|
||||
# Custom icon.
|
||||
# typeset -g POWERLEVEL9K_TODO_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||
|
||||
##################################[ context: user@hostname ]##################################
|
||||
# Context color when running with privileges.
|
||||
typeset -g POWERLEVEL9K_CONTEXT_ROOT_FOREGROUND=178
|
||||
|
|
|
@ -82,6 +82,7 @@
|
|||
# vpn_ip # virtual private network indicator
|
||||
# ram # free RAM
|
||||
# load # CPU load
|
||||
todo # todo items (https://github.com/todotxt/todo.txt-cli)
|
||||
# time # current time
|
||||
# =========================[ Line #2 ]=========================
|
||||
newline
|
||||
|
@ -589,6 +590,31 @@
|
|||
# Custom icon.
|
||||
# typeset -g POWERLEVEL9K_LOAD_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||
|
||||
################[ todo: todo items (https://github.com/todotxt/todo.txt-cli) ]################
|
||||
# Todo color.
|
||||
# typeset -g POWERLEVEL9K_TODO_FOREGROUND=0
|
||||
# typeset -g POWERLEVEL9K_TODO_BACKGROUND=8
|
||||
# Hide todo when the total number of tasks is zero.
|
||||
typeset -g POWERLEVEL9K_TODO_HIDE_ZERO_TOTAL=true
|
||||
# Hide todo when the number of tasks after filtering is zero.
|
||||
typeset -g POWERLEVEL9K_TODO_HIDE_ZERO_FILTERED=false
|
||||
|
||||
# Todo format. The following parameters are available within the expansion.
|
||||
#
|
||||
# - P9K_TODO_TOTAL_TASK_COUNT The total number of tasks.
|
||||
# - P9K_TODO_FILTERED_TASK_COUNT The number of tasks after filtering.
|
||||
#
|
||||
# These variables correspond to the last line of the output of `todo.sh -p ls`:
|
||||
#
|
||||
# TODO: 24 of 42 tasks shown
|
||||
#
|
||||
# Here 24 is P9K_TODO_FILTERED_TASK_COUNT and 42 is P9K_TODO_TOTAL_TASK_COUNT.
|
||||
#
|
||||
# typeset -g POWERLEVEL9K_TODO_CONTENT_EXPANSION='$P9K_TODO_FILTERED_TASK_COUNT'
|
||||
|
||||
# Custom icon.
|
||||
# typeset -g POWERLEVEL9K_TODO_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||
|
||||
##################################[ context: user@hostname ]##################################
|
||||
# Context color when running with privileges.
|
||||
typeset -g POWERLEVEL9K_CONTEXT_ROOT_FOREGROUND=1
|
||||
|
|
Loading…
Reference in a new issue