summaryrefslogtreecommitdiff
path: root/themes/fishy.zsh-theme
diff options
context:
space:
mode:
authorMarc Cornellà <marc.cornella@live.com>2020-08-31 17:38:30 +0200
committerMarc Cornellà <marc.cornella@live.com>2020-09-01 11:52:32 +0200
commita7f5170d68c0b75a9864763a90ac11e51ec67c81 (patch)
tree40b69169c39ba21f3be731cff9b317aeacf3c8fd /themes/fishy.zsh-theme
parent0dc83fe49fa1f645c64fe7dbdb94914093b90aff (diff)
downloadzsh-a7f5170d68c0b75a9864763a90ac11e51ec67c81.tar.gz
zsh-a7f5170d68c0b75a9864763a90ac11e51ec67c81.tar.bz2
zsh-a7f5170d68c0b75a9864763a90ac11e51ec67c81.zip
Remove perl dependency
Diffstat (limited to 'themes/fishy.zsh-theme')
-rw-r--r--themes/fishy.zsh-theme15
1 files changed, 9 insertions, 6 deletions
diff --git a/themes/fishy.zsh-theme b/themes/fishy.zsh-theme
index 00a60f45b..f6dae6181 100644
--- a/themes/fishy.zsh-theme
+++ b/themes/fishy.zsh-theme
@@ -1,12 +1,15 @@
# ZSH Theme emulating the Fish shell's default prompt.
_fishy_collapsed_wd() {
- echo $(pwd | perl -pe '
- BEGIN {
- binmode STDIN, ":encoding(UTF-8)";
- binmode STDOUT, ":encoding(UTF-8)";
- }; s|^$ENV{HOME}|~|g; s|/([^/.])[^/]*(?=/)|/$1|g; s|/\.([^/])[^/]*(?=/)|/.$1|g
-')
+ local -a pwd=("${(s:/:)PWD/#$HOME/~}")
+ for i in {1..$(($#pwd-1))}; do
+ if [[ "$pwd[$i]" = .* ]]; then
+ pwd[$i]="${${pwd[$i]}[1,2]}"
+ else
+ pwd[$i]="${${pwd[$i]}[1]}"
+ fi
+ done
+ echo "${(j:/:)pwd}"
}
local user_color='green'; [ $UID -eq 0 ] && user_color='red'