diff options
author | Dominik Ritter <dritter03@googlemail.com> | 2015-11-28 02:03:07 +0300 |
---|---|---|
committer | Dominik Ritter <dritter03@googlemail.com> | 2015-11-28 02:03:07 +0300 |
commit | c10bac90ba55607fe19913d1e71571b83d8df6dc (patch) | |
tree | e8dcedb104093f76eb5282f57ffeddbd56034236 /functions | |
parent | 3fea92369f11797077f7a92468814ab1ee0238c3 (diff) |
In Awesome-Mode either print a home-icon or a folder icon, depending in which directory the user is.
Diffstat (limited to 'functions')
-rw-r--r-- | functions/icons.zsh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/functions/icons.zsh b/functions/icons.zsh index dd256b06..0cd6bb9d 100644 --- a/functions/icons.zsh +++ b/functions/icons.zsh @@ -44,6 +44,7 @@ case $POWERLEVEL9K_MODE in LINUX_ICON $'\UE271' # SUNOS_ICON $'\U1F31E ' # 🌞 HOME_ICON $'\UE12C ' # + FOLDER_ICON $'\UE818 ' # NETWORK_ICON $'\UE1AD ' # LOAD_ICON $'\UE190 ' # #RAM_ICON $'\UE87D' # @@ -95,6 +96,7 @@ case $POWERLEVEL9K_MODE in LINUX_ICON $'\UF17C' # SUNOS_ICON $'\UF185 ' # HOME_ICON $'\UF015 ' # + FOLDER_ICON '' NETWORK_ICON $'\UF09E ' # LOAD_ICON $'\UF080 ' # RAM_ICON $'\UF0E4' # @@ -141,6 +143,7 @@ case $POWERLEVEL9K_MODE in LINUX_ICON 'Lx' SUNOS_ICON 'Sun' HOME_ICON '' + FOLDER_ICON '' NETWORK_ICON 'IP' LOAD_ICON 'L' RAM_ICON 'RAM' |