Added dropbox segment
This commit is contained in:
parent
e9e60324cd
commit
81cbd65142
3 changed files with 22 additions and 0 deletions
|
@ -1423,6 +1423,23 @@ prompt_kubecontext() {
|
|||
fi
|
||||
}
|
||||
|
||||
# Dropbox status
|
||||
prompt_dropbox() {
|
||||
# The first column is just the directory, so cut it
|
||||
local dropbox_status="$(dropbox-cli filestatus . | cut -d\ -f2-)"
|
||||
|
||||
# Only show if the folder is tracked
|
||||
if [[ "$dropbox_status" != 'unwatched' ]]; then
|
||||
# If "up to date", only show the icon
|
||||
if [[ "$dropbox_status" =~ 'up to date' ]]; then
|
||||
dropbox_status=""
|
||||
fi
|
||||
|
||||
"$1_prompt_segment" "$0" "$2" "white" "blue" "$dropbox_status" "DROPBOX_ICON"
|
||||
fi
|
||||
|
||||
}
|
||||
|
||||
|
||||
################################################################
|
||||
# Prompt processing and drawing
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue