diff options
author | Ben Hilburn <bhilburn@gmail.com> | 2017-10-07 03:44:00 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-07 03:44:00 +0300 |
commit | 6136152997444dd0b25a6ad2879b496b2fe474a6 (patch) | |
tree | feb2b5848f4ab9d5f56c026b657d2d8b033403fd /functions/icons.zsh | |
parent | e9e60324cde4279e5724d94905d61986ed9c4b3b (diff) | |
parent | b87c3b85ace58b4a247046a51c37a5b043fcefb5 (diff) |
Merge pull request #638 from TimothyEarley/dropbox-integration
Added Dropbox segment
Diffstat (limited to 'functions/icons.zsh')
-rw-r--r-- | functions/icons.zsh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/functions/icons.zsh b/functions/icons.zsh index a20cef2c..76913a81 100644 --- a/functions/icons.zsh +++ b/functions/icons.zsh @@ -87,6 +87,7 @@ case $POWERLEVEL9K_MODE in SSH_ICON '(ssh)' VPN_ICON '(vpn)' KUBERNETES_ICON $'\U2388' # ⎈ + DROPBOX_ICON $'\UF16B' # ) ;; 'awesome-fontconfig') @@ -158,6 +159,7 @@ case $POWERLEVEL9K_MODE in SSH_ICON '(ssh)' VPN_ICON $'\uF023' KUBERNETES_ICON $'\U2388' # ⎈ + DROPBOX_ICON $'\UF16B' # ) ;; 'awesome-mapped-fontconfig') @@ -232,6 +234,9 @@ case $POWERLEVEL9K_MODE in LOCK_ICON '\u'$CODEPOINT_OF_AWESOME_LOCK # EXECUTION_TIME_ICON '\u'$CODEPOINT_OF_AWESOME_HOURGLASS_END # SSH_ICON '(ssh)' + VPN_ICON '\u'$CODEPOINT_OF_AWESOME_LOCK + KUBERNETES_ICON $'\U2388' # ⎈ + DROPBOX_ICON '\u'$CODEPOINT_OF_AWESOME_DROPBOX # ) ;; 'nerdfont-complete'|'nerdfont-fontconfig') @@ -303,6 +308,7 @@ case $POWERLEVEL9K_MODE in SSH_ICON $'\uF489' # VPN_ICON '(vpn)' KUBERNETES_ICON $'\U2388' # ⎈ + DROPBOX_ICON $'\UF16B' # ) ;; *) @@ -374,6 +380,7 @@ case $POWERLEVEL9K_MODE in SSH_ICON '(ssh)' VPN_ICON '(vpn)' KUBERNETES_ICON $'\U2388' # ⎈ + DROPBOX_ICON 'Dropbox' ) ;; esac |